To contribute to this page, edit the following file
Sinope TH1123ZB #
Model | TH1123ZB |
Vendor | Sinope |
Description | Zigbee line volt thermostat |
Exposes | local_temperature, lock (state), power, energy, climate (occupied_heating_setpoint, local_temperature, system_mode, running_state), linkquality |
Picture | ![]() |
Notes #
Setting outdoor temperature #
To set outdoor temperature, you need to send the value to the following MQTT topic:
zigbee2mqtt/<FRIENDLY_NAME>/set/thermostat_outdoor_temperature
If you want to automate the publishing of the outdoor temperature using Home Assistant, you may create an automation like this:
- id: 'Auto_Publish_Outdoor_Temprature'
alias: Auto_Publish_Outdoor_Temprature
description: Automatically Publish the outdoor temperature to thermostats
trigger:
- entity_id: sensor.outdoor_temprature_sensor
platform: state
condition: []
action:
- data:
payload_template: ''
topic: zigbee2mqtt/<FRIENDLY_NAME>/set/thermostat_outdoor_temperature
service: mqtt.publish
Enabling time #
To enable time you need to send a blank message to the following MQTT topic:
zigbee2mqtt/<FRIENDLY_NAME>/set/thermostat_time
Everytime the above message is sent, Zigbee2MQTT will calculate the current time and send it to the thermostat.
Device type specific configuration #
How to use device type specific configuration
legacy
: Set tofalse
to disable the legacy integration (highly recommended!) (default: true)
Exposes #
Local_temperature (numeric) #
Current temperature measured on the device.
Value can be found in the published state on the local_temperature
property.
To read (/get
) the value publish a message to topic zigbee2mqtt/FRIENDLY_NAME/get
with payload {"local_temperature": ""}
.
It’s not possible to write (/set
) this value.
The unit of this value is °C
.
Lock #
The current state of this lock is in the published state under the keypad_lockout
property (value is 1
or 0
).
To control this lock publish a message to topic zigbee2mqtt/FRIENDLY_NAME/set
with payload {"keypad_lockout": "1"}
or {"keypad_lockout": "0"}
.
To read the current state of this lock publish a message to topic zigbee2mqtt/FRIENDLY_NAME/get
with payload {"keypad_lockout": ""}
.
Power (numeric) #
Instantaneous measured power.
Value can be found in the published state on the power
property.
To read (/get
) the value publish a message to topic zigbee2mqtt/FRIENDLY_NAME/get
with payload {"power": ""}
.
It’s not possible to write (/set
) this value.
The unit of this value is W
.
Energy (numeric) #
Sum of consumed energy.
Value can be found in the published state on the energy
property.
To read (/get
) the value publish a message to topic zigbee2mqtt/FRIENDLY_NAME/get
with payload {"energy": ""}
.
It’s not possible to write (/set
) this value.
The unit of this value is kWh
.
Climate #
This climate device supports the following features: occupied_heating_setpoint
, local_temperature
, system_mode
, running_state
.
occupied_heating_setpoint
: Temperature setpoint. To control publish a message to topiczigbee2mqtt/FRIENDLY_NAME/set
with payload{"occupied_heating_setpoint": VALUE}
whereVALUE
is the °C between7
and30
. To read send a message tozigbee2mqtt/FRIENDLY_NAME/get
with payload{"occupied_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
. 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:
sensor:
- platform: "mqtt"
state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
availability_topic: "zigbee2mqtt/bridge/state"
unit_of_measurement: "°C"
value_template: "{{ value_json.local_temperature }}"
device_class: "temperature"
lock:
- platform: "mqtt"
state_topic: true
availability_topic: "zigbee2mqtt/bridge/state"
command_topic: "zigbee2mqtt/<FRIENDLY_NAME>/set"
value_template: "{{ value_json.keypad_lockout }}"
payload_lock: "1"
payload_unlock: "0"
command_topic_postfix: "keypad_lockout"
sensor:
- platform: "mqtt"
state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
availability_topic: "zigbee2mqtt/bridge/state"
unit_of_measurement: "W"
value_template: "{{ value_json.power }}"
icon: "mdi:flash"
sensor:
- platform: "mqtt"
state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
availability_topic: "zigbee2mqtt/bridge/state"
unit_of_measurement: "kWh"
value_template: "{{ value_json.energy }}"
icon: "mdi:power-plug"
climate:
- platform: "mqtt"
availability_topic: "zigbee2mqtt/bridge/state"
temperature_unit: "C"
temp_step: 0.5
min_temp: "7"
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: "occupied_heating_setpoint"
temperature_state_template: "{{ value_json.occupied_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"