hass_flickerstrip/custom_components/flickerstrip/const.py

15 lines
220 B
Python
Raw Normal View History

2023-01-30 12:14:08 -05:00
from homeassistant.const import (
Platform
)
2023-01-29 09:34:51 -05:00
DOMAIN = "flickerstrip"
2023-01-29 13:29:34 -05:00
2023-01-30 12:14:08 -05:00
DATA_UPDATED = "flickerstrip_data_updated"
DEFAULT_NAME = "Flickerstrip"
2023-01-29 13:29:34 -05:00
DEFAULT_PORT = 80
2023-01-30 12:14:08 -05:00
PLATFORMS: list[Platform] = [
Platform.LIGHT,
]