hass-core/homeassistant/components/hardware/models.py
Erik Montnemery bb74730e96
Add support for USB dongles to the hardware integration (#76795)
* Add support for USB dongles to the hardware integration

* Update hardware integrations

* Adjust tests

* Add USB discovery for SkyConnect 1.0

* Improve test coverage

* Apply suggestions from code review

Co-authored-by: Paulus Schoutsen <balloob@gmail.com>

* Fix frozen dataclass shizzle

* Adjust test

Co-authored-by: Paulus Schoutsen <balloob@gmail.com>
2022-08-18 21:52:12 +02:00

46 lines
892 B
Python

"""Models for Hardware."""
from __future__ import annotations
from dataclasses import dataclass
from typing import Protocol
from homeassistant.core import HomeAssistant, callback
@dataclass
class BoardInfo:
"""Board info type."""
hassio_board_id: str | None
manufacturer: str
model: str | None
revision: str | None
@dataclass(frozen=True)
class USBInfo:
"""USB info type."""
vid: str
pid: str
serial_number: str | None
manufacturer: str | None
description: str | None
@dataclass(frozen=True)
class HardwareInfo:
"""Hardware info type."""
name: str | None
board: BoardInfo | None
dongles: list[USBInfo] | None
url: str | None
class HardwareProtocol(Protocol):
"""Define the format of hardware platforms."""
@callback
def async_info(self, hass: HomeAssistant) -> HardwareInfo:
"""Return info."""