Home Assistant Unofficial Reference 2024.12.1
models.py
Go to the documentation of this file.
1 """The led ble integration models."""
2 
3 from __future__ import annotations
4 
5 from dataclasses import dataclass
6 
7 from led_ble import LEDBLE
8 
9 from homeassistant.helpers.update_coordinator import DataUpdateCoordinator
10 
11 
12 @dataclass
13 class LEDBLEData:
14  """Data for the led ble integration."""
15 
16  title: str
17  device: LEDBLE
18  coordinator: DataUpdateCoordinator[None]