core/homeassistant/components/hyperion/const.py

23 lines
634 B
Python
Raw Normal View History

"""Constants for Hyperion integration."""
CONF_AUTH_ID = "auth_id"
CONF_CREATE_TOKEN = "create_token"
CONF_INSTANCE = "instance"
2020-12-18 07:03:54 +00:00
CONF_ON_UNLOAD = "ON_UNLOAD"
CONF_PRIORITY = "priority"
CONF_ROOT_CLIENT = "ROOT_CLIENT"
2020-12-18 07:03:54 +00:00
DEFAULT_NAME = "Hyperion"
DEFAULT_ORIGIN = "Home Assistant"
DEFAULT_PRIORITY = 128
DOMAIN = "hyperion"
HYPERION_RELEASES_URL = "https://github.com/hyperion-project/hyperion.ng/releases"
2020-12-18 07:03:54 +00:00
HYPERION_VERSION_WARN_CUTOFF = "2.0.0-alpha.9"
SIGNAL_INSTANCES_UPDATED = f"{DOMAIN}_instances_updated_signal." "{}"
SIGNAL_INSTANCE_REMOVED = f"{DOMAIN}_instance_removed_signal." "{}"
TYPE_HYPERION_LIGHT = "hyperion_light"