* Introduced uppercase detection for cover commands * Added FZ_ZZ as open_close available commands for covers * Added FZ_ZZ in the YAML config example * Introduced invert_position Option for cover * Cover slider inverted properly * Fixed wrong sample YAML config for cover * Fixed postlund's remark
37 lines
917 B
Python
37 lines
917 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"
|
|
CONF_DPS_STRINGS = "dps_strings"
|
|
|
|
# light
|
|
CONF_BRIGHTNESS_LOWER = "brightness_lower"
|
|
CONF_BRIGHTNESS_UPPER = "brightness_upper"
|
|
|
|
# switch
|
|
CONF_CURRENT = "current"
|
|
CONF_CURRENT_CONSUMPTION = "current_consumption"
|
|
CONF_VOLTAGE = "voltage"
|
|
|
|
# cover
|
|
CONF_COMMANDS_SET = "commands_set"
|
|
CONF_POSITIONING_MODE = "positioning_mode"
|
|
CONF_CURRENT_POSITION_DP = "current_position_dp"
|
|
CONF_SET_POSITION_DP = "set_position_dp"
|
|
CONF_POSITION_INVERTED = "position_inverted"
|
|
CONF_SPAN_TIME = "span_time"
|
|
|
|
# sensor
|
|
CONF_SCALING = "scaling"
|
|
|
|
DOMAIN = "localtuya"
|
|
|
|
# Platforms in this list must support config flows
|
|
PLATFORMS = ["binary_sensor", "cover", "fan", "light", "sensor", "switch"]
|
|
|
|
TUYA_DEVICE = "tuya_device"
|