To contribute to this page, edit the following file
TuYa U86KWF-ZPSJ #
Model | U86KWF-ZPSJ |
Vendor | TuYa |
Description | Environment controller |
Exposes | climate (current_heating_setpoint, local_temperature, system_mode, running_state, local_temperature_calibration), linkquality |
Picture | ![]() |
Notes #
Device type specific configuration #
How to use device type specific configuration
legacy
: Set tofalse
to disable the legacy integration (highly recommended!) (default: true)
Exposes #
Climate #
This climate device supports the following features: current_heating_setpoint
, local_temperature
, system_mode
, running_state
, local_temperature_calibration
.
current_heating_setpoint
: Temperature setpoint. To control publish a message to topiczigbee2mqtt/FRIENDLY_NAME/set
with payload{"current_heating_setpoint": VALUE}
whereVALUE
is the °C between5
and30
. To read send a message tozigbee2mqtt/FRIENDLY_NAME/get
with payload{"current_heating_setpoint": ""}
.local_temperature
: Current temperature measured on the device (in °C). To read send a message tozigbee2mqtt/FRIENDLY_NAME/get
with payload{"local_temperature": ""}
.system_mode
: Mode of this device. To control publish a message to topiczigbee2mqtt/FRIENDLY_NAME/set
with payload{"system_mode": VALUE}
whereVALUE
is one of:off
,auto
,heat
. To read send a message tozigbee2mqtt/FRIENDLY_NAME/get
with payload{"system_mode": ""}
.running_state
: The current running state. Possible values are:idle
,heat
,cool
. To read send a message tozigbee2mqtt/FRIENDLY_NAME/get
with payload{"running_state": ""}
.
Linkquality (numeric) #
Link quality (signal strength).
Value can be found in the published state on the linkquality
property.
It’s not possible to read (/get
) or write (/set
) this value.
The minimal value is 0
and the maximum value is 255
.
The unit of this value is lqi
.
Manual Home Assistant configuration #
Although Home Assistant integration through MQTT discovery is preferred, manual integration is possible with the following configuration:
climate:
- platform: "mqtt"
availability_topic: "zigbee2mqtt/bridge/state"
temperature_unit: "C"
temp_step: 0.5
min_temp: "5"
max_temp: "30"
current_temperature_topic: true
current_temperature_template: "{{ value_json.local_temperature }}"
mode_state_topic: true
mode_state_template: "{{ value_json.system_mode }}"
modes:
- "off"
- "auto"
- "heat"
mode_command_topic: true
action_topic: true
action_template: "{% set values = {'idle':'off','heat':'heating','cool':'cooling','fan only':'fan'} %}{{ values[value_json.running_state] }}"
temperature_command_topic: "current_heating_setpoint"
temperature_state_template: "{{ value_json.current_heating_setpoint }}"
temperature_state_topic: true
sensor:
- platform: "mqtt"
state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
availability_topic: "zigbee2mqtt/bridge/state"
unit_of_measurement: "lqi"
value_template: "{{ value_json.linkquality }}"
icon: "mdi:signal"