18 lines
385 B
Python
18 lines
385 B
Python
"""Constants for the Elgato Key Light integration."""
|
|
|
|
# Integration domain
|
|
DOMAIN = "elgato"
|
|
|
|
# Home Assistant data keys
|
|
DATA_ELGATO_CLIENT = "elgato_client"
|
|
|
|
# Attributes
|
|
ATTR_IDENTIFIERS = "identifiers"
|
|
ATTR_MANUFACTURER = "manufacturer"
|
|
ATTR_MODEL = "model"
|
|
ATTR_ON = "on"
|
|
ATTR_SOFTWARE_VERSION = "sw_version"
|
|
ATTR_TEMPERATURE = "temperature"
|
|
|
|
CONF_SERIAL_NUMBER = "serial_number"
|