hass_flickerstrip/custom_components/flickerstrip/const.py

15 lines
220 B
Python

from homeassistant.const import (
Platform
)
DOMAIN = "flickerstrip"
DATA_UPDATED = "flickerstrip_data_updated"
DEFAULT_NAME = "Flickerstrip"
DEFAULT_PORT = 80
PLATFORMS: list[Platform] = [
Platform.LIGHT,
]