Add EntityFeature enum to Remote (#1275)

This commit is contained in:
Franck Nijhof 2022-04-03 06:00:48 +02:00 committed by GitHub
parent 6c2b4f3da4
commit 69c31d515e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,11 +22,14 @@ An activity is a predefined activity or macro that puts the remote in a specific
## Supported Features ## Supported Features
| Constant | Description Supported features are defined by using values in the `RemoteEntityFeature` enum
| -------- | ----------- and are combined using the bitwise or (`|`) operator.
| `SUPPORT_LEARN_COMMAND` | Entity allows learning commands from devices.
| `SUPPORT_DELETE_COMMAND` | Entity allows deleting commands from devices. | Value | Description |
| `SUPPORT_ACTIVITY` | Entity supports activities. | ---------------- | --------------------------------------------- |
| `LEARN_COMMAND` | Entity allows learning commands from devices. |
| `DELETE_COMMAND` | Entity allows deleting commands from devices. |
| `ACTIVITY` | Entity supports activities. |
## Methods ## Methods