mirror of
https://github.com/home-assistant/core.git
synced 2026-07-01 03:36:05 +01:00
a1b138acd2
Co-authored-by: Copilot <copilot@github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
23 lines
618 B
Python
23 lines
618 B
Python
"""Constants for the Satel Integra integration."""
|
|
|
|
DEFAULT_CONF_ARM_HOME_MODE = 1
|
|
DEFAULT_PORT = 7094
|
|
|
|
DOMAIN = "satel_integra"
|
|
|
|
SUBENTRY_TYPE_PARTITION = "partition"
|
|
SUBENTRY_TYPE_ZONE = "zone"
|
|
SUBENTRY_TYPE_OUTPUT = "output"
|
|
SUBENTRY_TYPE_SWITCHABLE_OUTPUT = "switchable_output"
|
|
|
|
CONF_PARTITION_NUMBER = "partition_number"
|
|
CONF_ZONE_NUMBER = "zone_number"
|
|
CONF_OUTPUT_NUMBER = "output_number"
|
|
CONF_SWITCHABLE_OUTPUT_NUMBER = "switchable_output_number"
|
|
|
|
CONF_ARM_HOME_MODE = "arm_home_mode"
|
|
CONF_ZONE_TYPE = "type"
|
|
CONF_ENCRYPTION_KEY = "encryption_key"
|
|
|
|
CONF_ENABLE_TEMPERATURE_SENSOR = "enable_temperature_sensor"
|