Skip to content

Commit 3bfd684

Browse files
mik-lajabmantis
andauthored
Add missing is_on property to RemoteEntity (#2843)
Co-authored-by: Abílio Costa <[email protected]>
1 parent c6866f3 commit 3bfd684

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

docs/core/entity/remote.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@ Derive entity platforms from [`homeassistant.components.remote.RemoteEntity`](ht
1616
Properties should always only return information from memory and not do I/O (like network requests). Implement `update()` or `async_update()` to fetch data.
1717
:::
1818

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

2425
### Activity
2526

0 commit comments

Comments
 (0)