newt10 / homebridge-broadlink-rm-enhanced

Broadlink RM Mini and Pro plugin for homebridge:
https://github.com/nfarina/homebridge
Apache License 2.0
9 stars 1 forks source link

"maxTemperature": XX, not working properly #23

Closed josemunozmatos closed 3 years ago

josemunozmatos commented 3 years ago

Hi, "maxTemperature": XX, not working properly

I have it set to 76, but on the home App the max is displayed as 75 :(

IMG_1172

Heres is my config for reference: { "name": "Living Room Cooler", "type": "heater-cooler", "host": "192.168.68.100", "minTemperature": 68, "maxTemperature": 76, "coolingThresholdTemperature": 72, "heatingThresholdTemperature": 76, "temperatureUnits": "F", "defaultNowTemperature": 74, "turnOnWhenOff": true, "debug": true, "data": { "cool": { "on": "on_HEX_CODE", "off": "off_HEX_CODE", "swingToggle": "swing_HEX_CODE", "temperatureCodes": { "68": "68_HEX_CODE", "69": "69_HEX_CODE", "70": "70_HEX_CODE", "71": "71_HEX_CODE", "72": "72_HEX_CODE", "73": "73_HEX_CODE", "74": "74_HEX_CODE", "75": "75_HEX_CODE", "76": "76_HEX_CODE" } } } },

newt10 commented 3 years ago

Yes, this is how the HomeKit interface is designed. If you have codes until 75, then set you max temperature as 76.

josemunozmatos commented 3 years ago

Thanks!