Add more Tuya Vacuum sensors and select entities (#60927)
Co-authored-by: Franck Nijhof <frenck@frenck.nl>
This commit is contained in:
parent
b65b25c1bb
commit
fdb13726f6
4 changed files with 134 additions and 1 deletions
|
@ -60,6 +60,9 @@ DEVICE_CLASS_TUYA_RECORD_MODE = "tuya__record_mode"
|
|||
DEVICE_CLASS_TUYA_RELAY_STATUS = "tuya__relay_status"
|
||||
DEVICE_CLASS_TUYA_STATUS = "tuya__status"
|
||||
DEVICE_CLASS_TUYA_FINGERBOT_MODE = "tuya__fingerbot_mode"
|
||||
DEVICE_CLASS_TUYA_VACUUM_CISTERN = "tuya__vacuum_cistern"
|
||||
DEVICE_CLASS_TUYA_VACUUM_COLLECTION = "tuya__vacuum_collection"
|
||||
DEVICE_CLASS_TUYA_VACUUM_MODE = "tuya__vacuum_mode"
|
||||
|
||||
TUYA_DISCOVERY_NEW = "tuya_discovery_new"
|
||||
TUYA_HA_SIGNAL_UPDATE_ENTITY = "tuya_entry_update"
|
||||
|
@ -145,12 +148,16 @@ class DPCode(str, Enum):
|
|||
CH4_SENSOR_STATE = "ch4_sensor_state"
|
||||
CH4_SENSOR_VALUE = "ch4_sensor_value"
|
||||
CHILD_LOCK = "child_lock" # Child lock
|
||||
CISTERN = "cistern"
|
||||
CLEAN_AREA = "clean_area"
|
||||
CLEAN_TIME = "clean_time"
|
||||
CLICK_SUSTAIN_TIME = "click_sustain_time"
|
||||
CO_STATE = "co_state"
|
||||
CO_STATUS = "co_status"
|
||||
CO_VALUE = "co_value"
|
||||
CO2_STATE = "co2_state"
|
||||
CO2_VALUE = "co2_value" # CO2 concentration
|
||||
COLLECTION_MODE = "collection_mode"
|
||||
COLOR_DATA_V2 = "color_data_v2"
|
||||
COLOUR_DATA = "colour_data" # Colored light mode
|
||||
COLOUR_DATA_HSV = "colour_data_hsv" # Colored light mode
|
||||
|
@ -171,11 +178,15 @@ class DPCode(str, Enum):
|
|||
DOORCONTACT_STATE = "doorcontact_state" # Status of door window sensor
|
||||
DOORCONTACT_STATE_2 = "doorcontact_state_2"
|
||||
DOORCONTACT_STATE_3 = "doorcontact_state_3"
|
||||
DUSTER_CLOTH = "duster_cloth"
|
||||
EDGE_BRUSH = "edge_brush"
|
||||
ELECTRICITY_LEFT = "electricity_left"
|
||||
FAN_DIRECTION = "fan_direction" # Fan direction
|
||||
FAN_SPEED_ENUM = "fan_speed_enum" # Speed mode
|
||||
FAN_SPEED_PERCENT = "fan_speed_percent" # Stepless speed
|
||||
FAR_DETECTION = "far_detection"
|
||||
FAULT = "fault"
|
||||
FILTER_LIFE = "filter"
|
||||
FILTER_RESET = "filter_reset" # Filter (cartridge) reset
|
||||
FLOODLIGHT_LIGHTNESS = "floodlight_lightness"
|
||||
FLOODLIGHT_SWITCH = "floodlight_switch"
|
||||
|
@ -232,6 +243,7 @@ class DPCode(str, Enum):
|
|||
RESET_FILTER = "reset_filter"
|
||||
RESET_MAP = "reset_map"
|
||||
RESET_ROLL_BRUSH = "reset_roll_brush"
|
||||
ROLL_BRUSH = "roll_brush"
|
||||
SEEK = "seek"
|
||||
SENSITIVITY = "sensitivity" # Sensitivity
|
||||
SENSOR_HUMIDITY = "sensor_humidity"
|
||||
|
@ -288,6 +300,9 @@ class DPCode(str, Enum):
|
|||
TEMP_VALUE = "temp_value" # Color temperature
|
||||
TEMP_VALUE_V2 = "temp_value_v2"
|
||||
TEMPER_ALARM = "temper_alarm" # Tamper alarm
|
||||
TOTAL_CLEAN_AREA = "total_clean_area"
|
||||
TOTAL_CLEAN_COUNT = "total_clean_count"
|
||||
TOTAL_CLEAN_TIME = "total_clean_time"
|
||||
UV = "uv" # UV sterilization
|
||||
VA_BATTERY = "va_battery"
|
||||
VA_HUMIDITY = "va_humidity"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue