Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions docs/core/entity/remote.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ Derive entity platforms from [`homeassistant.components.remote.RemoteEntity`](ht
Properties should always only return information from memory and not do I/O (like network requests). Implement `update()` or `async_update()` to fetch data.
:::

| Name | Type | Default | Description
| ---- | ---- | ------- | -----------
| current_activity | str | None | Return the current active activity |
| activity_list | list | None | Return the list of available activities |
| Name | Type | Default | Description |
| ---- | ---- | ------- | ----------- |
| is_on | boolean | `None` | If the device is currently on or off. |
| current_activity | str | `None` | Return the current active activity. |
| activity_list | list | `None` | Return the list of available activities. |

### Activity

Expand Down