Add smartcamera devices to supported docs (#1257)

The library now officially supports H200, C200 and TC65
This commit is contained in:
Steven B.
2024-11-14 18:28:30 +00:00
committed by GitHub
parent b8f6651d9b
commit 5fe75cada9
6 changed files with 89 additions and 10 deletions

View File

@@ -152,6 +152,22 @@ class WifiNetwork:
_LOGGER = logging.getLogger(__name__)
@dataclass
class _DeviceInfo:
"""Device Model Information."""
short_name: str
long_name: str
brand: str
device_family: str
device_type: DeviceType
hardware_version: str
firmare_version: str
firmware_build: str
requires_auth: bool
region: str | None
class Device(ABC):
"""Common device interface.