Skip to content
This repository was archived by the owner on Feb 24, 2021. It is now read-only.

Commit 87ffecb

Browse files
authored
feat(hass): climate Fibaro Thermostat (#860)
* Update devices.js Added Fibaro Thermostat. - I'm new to this zwave and mqtt stuff, but this config seemed to work for me. Also thanks for this great project! * Update devices.js fixing syntax error
1 parent 0459443 commit 87ffecb

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

hass/devices.js

+27
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,33 @@ module.exports = {
170170
}
171171
}
172172
],
173+
'271-4097-4865': [
174+
// Fibaro Thermostat FGT 001
175+
{
176+
type: 'climate',
177+
object_id: 'thermostat',
178+
values: ['49-1-1', '64-1-0', '67-1-1'],
179+
mode_map: {
180+
off: 'Off',
181+
heat: 'Heat'
182+
},
183+
setpoint_topic: {
184+
Heat: '67-1-1'
185+
},
186+
default_setpoint: '67-1-1',
187+
discovery_payload: {
188+
min_temp: 10,
189+
max_temp: 30,
190+
modes: ['off', 'heat'],
191+
current_temperature_topic: '49-1-1',
192+
current_temperature_template: '{{ value_json.value }}',
193+
mode_state_topic: '64-1-0',
194+
mode_command_topic: true,
195+
temperature_state_template: '{{ value_json.value }}',
196+
temperature_command_topic: true
197+
}
198+
}
199+
],
173200
'411-1-1': [
174201
// Heatit Thermostat TF 021 (ThermoFloor AS)
175202
{

0 commit comments

Comments
 (0)