i was recently building a new HVAC node wich can send IR commands to my wall mounted air conditioning.
fortunately mysensors has several variables implemented so that i can send several values over to the node.
S_HVAC is the switch wich has the following variables:
V_HVAC_SETPOINT_HEAT this is a heat setpoint
V_HVAC_SETPOINT_COLD this is a cold setpoint
V_HVAC_FLOW_STATE this defines if it is cooling, heating, off or automatic
V_HVAC_FLOW_MODE this is a mode for sleeping of always on
V_HVAC_SPEED this mode defines the speed for the fan; FAN_1, FAN_2, FAN_3 or FAN_AUTO
unafortunately when i tried presenting the node to domoticz it was not recognised.
after some tips i tried sending back some values in the hope that a device would be created. but all i got in the log was the following:
Code: Select all
16-08-29 11:22:34.763 (mysensor) Temp (Baro Temp)
2016-08-29 11:22:34.772 (mysensor) General/Barometer (Baro)
2016-08-29 11:22:35.059 MySensors: Node: 12, Sketch Version: 1.0
2016-08-29 11:22:35.099 Error: MySensors: Unhandled sensor (sub-type=22), please report with log!
2016-08-29 11:22:35.108 Error: MySensors: Unhandled sensor (sub-type=21), please report with log!
2016-08-29 11:22:35.115 (mysensor) Thermostat (Setpoint Heat)
2016-08-29 11:22:35.298 (mysensor) Temp (Baro Temp)
after another tip someone showed me the sourcecode and indeed, there is only a temperature setpoint variable listed under the S_HVAC.
https://github.com/domoticz/domoticz/bl ... Base.h#L53
maybe someone could explain me why the rest is missing or is it just left out for some reason?