I use MQTT to interface with my HVAC through an intesis box.
My current configuration has been working fine util the removal of power_command_topic in the latest release.
climate:
- name: HVAC MQTT
modes:
- "auto"
- "off"
- "cool"
- "fan"
- "dry"
- "heat"
swing_modes:
- "auto"
- "swing"
fan_modes:
- "auto"
- "1"
- "2"
- "3"
- "4"
power_command_topic: "/cmnd/hvac/intesis/CC3F1D020859/settings/onoff"
mode_command_topic: "/cmnd/hvac/intesis/CC3F1D020859/settings/mode"
temperature_command_topic: "/cmnd/hvac/intesis/CC3F1D020859/settings/setptemp"
fan_mode_command_topic: "/cmnd/hvac/intesis/CC3F1D020859/settings/fansp"
swing_mode_command_topic: "/cmnd/hvac/intesis/CC3F1D020859/settings/vaneud"
precision: 1.0
I understand that power_command_topic is no longer supported however I need to send an ON or OFF command to /cmnd/hvac/intesis/CC3F1D020859/settings/onoff in order to get the HVAC to function.
Could someone point me in the right direction of how to approach this or some updated documentation?
Thanks