1
0
mirror of https://github.com/home-assistant/core.git synced 2025-06-24 15:07:07 +00:00
mkmer 5ef6b5a300
Add BLE sensor to Aladdin_connect ()
* 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