1
0
mirror of https://github.com/home-assistant/core.git synced 2026-06-06 07:26:58 +01:00
Files
core/homeassistant/components/aladdin_connect/model.py
T
mkmer 5ef6b5a300 Add BLE sensor to Aladdin_connect (#76221)
* Add BLE sensor
Default Enable BLE & Battery for Model 02

* recommended changes

* Recommended changes

Model 02 -> 01 (oops)
2x async_block_till_done() not needed.
2022-08-17 09:09:19 +02:00

16 lines
278 B
Python

"""Models for Aladdin connect cover platform."""
from __future__ import annotations
from typing import TypedDict
class DoorDevice(TypedDict):
"""Aladdin door device."""
device_id: str
door_number: int
name: str
status: str
serial: str
model: str