24 lines
532 B
Python
24 lines
532 B
Python
"""Constants for localtuya integration."""
|
|
|
|
ATTR_CURRENT = 'current'
|
|
ATTR_CURRENT_CONSUMPTION = 'current_consumption'
|
|
ATTR_VOLTAGE = 'voltage'
|
|
|
|
CONF_LOCAL_KEY = "local_key"
|
|
CONF_PROTOCOL_VERSION = "protocol_version"
|
|
|
|
# switch
|
|
CONF_CURRENT = "current"
|
|
CONF_CURRENT_CONSUMPTION = "current_consumption"
|
|
CONF_VOLTAGE = "voltage"
|
|
|
|
# cover
|
|
CONF_OPEN_CMD = 'open_cmd'
|
|
CONF_CLOSE_CMD = 'close_cmd'
|
|
CONF_STOP_CMD = 'stop_cmd'
|
|
|
|
DOMAIN = "localtuya"
|
|
|
|
# Platforms in this list must support config flows
|
|
PLATFORMS = ["cover", "light", "switch"]
|