hass-core/homeassistant/components/wiz/utils.py
2022-02-07 17:44:52 +01:00

16 lines
451 B
Python

"""WiZ utils."""
from __future__ import annotations
from pywizlight import BulbType
from .const import DEFAULT_NAME
def _short_mac(mac: str) -> str:
"""Get the short mac address from the full mac."""
return mac.replace(":", "").upper()[-6:]
def name_from_bulb_type_and_mac(bulb_type: BulbType, mac: str) -> str:
"""Generate a name from bulb_type and mac."""
return f"{DEFAULT_NAME} {bulb_type.bulb_type.value} {_short_mac(mac)}"