2022-06-13 03:14:19 +00:00
|
|
|
"""Support for Lutron Caseta."""
|
2024-03-08 14:01:29 +00:00
|
|
|
|
2022-06-13 03:14:19 +00:00
|
|
|
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)
|