This repository has been archived by the owner on Mar 6, 2023. It is now read-only.
Releases: liaan/broadlink_ac_mqtt
Releases · liaan/broadlink_ac_mqtt
Production
Production
Added swingy controlls
mosquitto_pub -h mqtt.internall -t '/aircon/mac_address/fixation_h/set' -m 'ON'
mosquitto_pub -h mqtt.internall -t '/aircon/mac_address/fixation_v/set' -m 'SWING'
class VERTICAL:
TOP= 0b00000001
MIDDLE1= 0b00000010
MIDDLE2 = 0b00000011
MIDDLE3 = 0b00000100
BOTTOM= 0b00000101
SWING= 0b00000110
AUTO = 0b00000111
class HORIZONTAL: ##Don't think this really works for all devices. only on/off works on mine.
LEFT_FIX = 2
LEFT_FLAP = 1
LEFT_RIGHT_FIX = 7
LEFT_RIGHT_FLAP = 0
RIGHT_FIX = 6
RIGHT_FLAP = 5
ON = 0
OFF = 1
Production
1.0.19 Update monitor.py
Production
Added lot more debugging and better error handling .Hopefully now works as it should after breaking previous releases (stupid me)
Production
HA auto discovery improvements
Force refresh every update_interval of all values when HA discovery topic is set/used.
Todo:
Test if Retain on Config is still needed for HA to keep device between restarts
Production
More HA improvements
Production
Move Turbo and Mute to the Fanspeed options
,"fan_modes": ["Auto","Low","Medium", "High","Turbo","Mute"]
Production
Add Mute and Turbo as fan speeds
Production
Merge pull request #48 from mrekin/master Some notes in readme about device name
Production
bug fixes