You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/core/entity/remote.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,10 +16,11 @@ Derive entity platforms from [`homeassistant.components.remote.RemoteEntity`](ht
16
16
Properties should always only return information from memory and not do I/O (like network requests). Implement `update()` or `async_update()` to fetch data.
17
17
:::
18
18
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. |
0 commit comments