Add state feature for iot devices (#924)

This is allows a generic implementation for the switch platform in the
homeassistant integration.

Also elevates set_state(bool) to be part of the standard API.
This commit is contained in:
Teemu R
2024-05-22 16:52:00 +02:00
committed by GitHub
parent db6e335346
commit 23c5ee089a
2 changed files with 27 additions and 0 deletions

View File

@@ -138,6 +138,14 @@ class Device(ABC):
async def turn_off(self, **kwargs) -> dict | None:
"""Turn off the device."""
@abstractmethod
async def set_state(self, on: bool):
"""Set the device state to *on*.
This allows turning the device on and off.
See also *turn_off* and *turn_on*.
"""
@property
def host(self) -> str:
"""The device host."""