title | description |
---|---|
ETOP HT-10 control via MQTT |
Integrate your ETOP HT-10 via Zigbee2MQTT with whatever smart home infrastructure you are using without the vendors bridge or gateway. |
To contribute to this page, edit the following file
| Model | HT-10 | | Vendor | ETOP | | Description | Radiator valve | | Supports | thermostat, temperature | | Picture | |
None
Although Home Assistant integration through MQTT discovery is preferred, manual integration is possible with the following configuration:
{% raw %}
lock:
- platform: "mqtt"
state_topic: true
availability_topic: "zigbee2mqtt/bridge/state"
command_topic: "zigbee2mqtt/<FRIENDLY_NAME>/set"
command_topic_postfix: "child_lock"
payload_lock: "LOCK"
payload_unlock: "UNLOCK"
state_locked: "LOCKED"
state_unlocked: "UNLOCKED"
value_template: "{{ value_json.child_lock }}"
binary_sensor:
- platform: "mqtt"
state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
availability_topic: "zigbee2mqtt/bridge/state"
payload_on: true
payload_off: false
value_template: "{{ value_json.battery_low}}"
device_class: "battery"
climate:
- platform: "mqtt"
availability_topic: "zigbee2mqtt/bridge/state"
temperature_unit: "C"
min_temp: "5"
max_temp: "35"
mode_state_topic: true
mode_state_template: "{{ value_json.system_mode }}"
mode_command_topic: true
current_temperature_topic: true
current_temperature_template: "{{ value_json.local_temperature }}"
temp_step: 0.5
action_topic: true
action_template: "{% set values = {'idle':'off','heat':'heating','cool':'cooling','fan only':'fan'} %}{{ values[value_json.running_state] }}"
modes:
- "off"
- "heat"
- "auto"
away_mode_command_topic: true
away_mode_state_topic: true
away_mode_state_template: "{{ value_json.away_mode }}"
temperature_state_topic: true
temperature_state_template: "{{ value_json.current_heating_setpoint }}"
temperature_command_topic: "current_heating_setpoint"
sensor:
- platform: "mqtt"
state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
availability_topic: "zigbee2mqtt/bridge/state"
icon: "mdi:signal"
unit_of_measurement: "lqi"
value_template: "{{ value_json.linkquality }}"
{% endraw %}