Files
core/homeassistant/components/lyngdorf/const.py
T
2026-08-24 22:39:36 +02:00

17 lines
379 B
Python

"""Constants for the Lyngdorf integration."""
from homeassistant.const import Platform
DOMAIN = "lyngdorf"
DEFAULT_DEVICE_NAME = "Lyngdorf"
PLATFORMS: list[Platform] = [
Platform.MEDIA_PLAYER,
Platform.NUMBER,
Platform.REMOTE,
Platform.SELECT,
Platform.SENSOR,
]
CONF_SERIAL_NUMBER = "serial_number"
SSDP_ST = "urn:schemas-upnp-org:device:MediaRenderer:2"