mirror of
https://github.com/home-assistant/core.git
synced 2026-09-09 23:21:00 +01:00
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
17 lines
379 B
Python
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"
|