mirror of
https://github.com/home-assistant/core.git
synced 2025-05-12 01:49:16 +00:00
8 lines
208 B
Python
8 lines
208 B
Python
"""Support for Lutron Caseta."""
|
|
from __future__ import annotations
|
|
|
|
|
|
def serial_to_unique_id(serial: int) -> str:
|
|
"""Convert a lutron serial number to a unique id."""
|
|
return hex(serial)[2:].zfill(8)
|