mirror of
https://github.com/andvikt/mega_hacs.git
synced 2025-12-11 00:54:28 +05:00
82 lines
1.8 KiB
Python
82 lines
1.8 KiB
Python
"""Constants for the mega integration."""
|
|
import re
|
|
from itertools import permutations
|
|
|
|
DOMAIN = "mega"
|
|
CONF_MEGA_ID = "mega_id"
|
|
CONF_DIMMER = "dimmer"
|
|
CONF_SWITCH = "switch"
|
|
CONF_KEY = 'key'
|
|
TEMP = 'temp'
|
|
HUM = 'hum'
|
|
W1 = 'w1'
|
|
W1BUS = 'w1bus'
|
|
CONF_PORT_TO_SCAN = 'port_to_scan'
|
|
CONF_RELOAD = 'reload'
|
|
CONF_INVERT = 'invert'
|
|
CONF_PORTS = 'ports'
|
|
CONF_CUSTOM = '__custom'
|
|
CONF_HTTP = '__http'
|
|
CONF_ALL = '__all'
|
|
CONF_SKIP = 'skip'
|
|
CONF_MQTT_INPUTS = 'mqtt_inputs'
|
|
CONF_NPORTS = 'nports'
|
|
CONF_RESPONSE_TEMPLATE = 'response_template'
|
|
CONF_ACTION = 'action'
|
|
CONF_UPDATE_ALL = 'update_all'
|
|
CONF_FAKE_RESPONSE = 'fake_response'
|
|
CONF_GET_VALUE = 'get_value'
|
|
CONF_ALLOW_HOSTS = 'allow_hosts'
|
|
CONF_PROTECTED = 'protected'
|
|
CONF_CONV_TEMPLATE = 'conv_template'
|
|
CONF_POLL_OUTS = 'poll_outs'
|
|
CONF_FORCE_D = 'force_d'
|
|
CONF_DEF_RESPONSE = 'def_response'
|
|
CONF_RESTORE_ON_RESTART = 'restore_on_restart'
|
|
CONF_CLICK_TIME = 'click_time'
|
|
CONF_LONG_TIME = 'long_time'
|
|
CONF_FORCE_I2C_SCAN = 'force_i2c_scan'
|
|
CONF_UPDATE_TIME = 'update_time'
|
|
CONF_HEX_TO_FLOAT = 'hex_to_float'
|
|
CONF_LED = 'led'
|
|
CONF_WS28XX = 'ws28xx'
|
|
CONF_ORDER = 'order'
|
|
CONF_SMOOTH = 'smooth'
|
|
CONF_WHITE_SEP = 'white_sep'
|
|
CONF_CHIP = 'chip'
|
|
CONF_RANGE = 'range'
|
|
PLATFORMS = [
|
|
"light",
|
|
"switch",
|
|
"binary_sensor",
|
|
"sensor",
|
|
]
|
|
EVENT_BINARY_SENSOR = f'{DOMAIN}.sensor'
|
|
EVENT_BINARY = f'{DOMAIN}.binary'
|
|
|
|
PATT_SPLIT = re.compile('[;/]')
|
|
|
|
LONG = 'long'
|
|
RELEASE = 'release'
|
|
LONG_RELEASE = 'long_release'
|
|
PRESS = 'press'
|
|
LUX = 'lux'
|
|
SINGLE_CLICK = 'single'
|
|
DOUBLE_CLICK = 'double'
|
|
|
|
PATT_FW = re.compile(r'fw:\s(.+?)\)')
|
|
|
|
REMOVE_CONFIG = [
|
|
'extenders',
|
|
'ext_in',
|
|
'ext_acts',
|
|
'i2c_sensors',
|
|
'binary_sensor',
|
|
'light',
|
|
'i2c',
|
|
'sensor',
|
|
'smooth',
|
|
]
|
|
RGB_COMBINATIONS = [''.join(x) for x in permutations('rgb')]
|
|
RGB = 'rgb'
|