1
0
mirror of https://github.com/elisspace/core.git synced 2026-08-29 15:43:55 +00:00
Files
2022-06-12 20:14:19 -07:00

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)