* 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.
15 lines
278 B
Python
15 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
|