I have a hood in my kitchen which I can control through an HTTP binding. I can’t get the state from the hood (low, medium, high, turbo) and thus I can only control it “relatively”.
I succeeded in displaying it in OpenHAB as follows:
However when I press UP or DOWN the button stays pink/stateful to UP or DOWN as follows:
Which is quite bizarre because I have set the autoupdate to false:
Switch 433_Dampkap_Intensity "Dampkap intensiteit" <pump> { http=">[ON:GET:http://192.168.4.145:3000/power-up] >[OFF:GET:http://192.168.4.145:3000/power-down]" , autoupdate="false"}
Frame label=Dampkap {
Switch item=433_Dampkap_TogglePower mappings=[ON="ON/OFF"]
Switch item=433_Dampkap_DownLights mappings=[ON="ON/OFF"]
Switch item=433_Dampkap_Intensity mappings=[OFF="DOWN",ON="UP"]
}
What am I doing wrong?