To contribute to this page, edit the following file
Danfoss 014G2461 #
Model | 014G2461 |
Vendor | Danfoss |
Description | Ally thermostat |
Exposes | battery, lock (state), climate (occupied_heating_setpoint, local_temperature), 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 #
Battery (numeric) #
Remaining battery in %.
Value can be found in the published state on the battery
property.
It’s not possible to read (/get
) or write (/set
) this value.
The minimal value is 0
and the maximum value is 100
.
The unit of this value is %
.
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": ""}
.
Climate #
This climate device supports the following features: occupied_heating_setpoint
, local_temperature
.
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 between6
and28
. 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": ""}
.
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: "%"
value_template: "{{ value_json.battery }}"
device_class: "battery"
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"
climate:
- platform: "mqtt"
availability_topic: "zigbee2mqtt/bridge/state"
temperature_unit: "C"
temp_step: 0.5
min_temp: "6"
max_temp: "28"
current_temperature_topic: true
current_temperature_template: "{{ value_json.local_temperature }}"
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"