core/homeassistant/components/leaone/device.py

17 lines
437 B
Python
Raw Normal View History

2024-01-24 08:08:20 +00:00
"""Support for Leaone devices."""
2024-01-24 08:08:20 +00:00
from __future__ import annotations
from leaone_ble import DeviceKey
from homeassistant.components.bluetooth.passive_update_processor import (
PassiveBluetoothEntityKey,
)
def device_key_to_bluetooth_entity_key(
device_key: DeviceKey,
) -> PassiveBluetoothEntityKey:
"""Convert a device key to an entity key."""
return PassiveBluetoothEntityKey(device_key.key, device_key.device_id)