I have tested … and here my workaround for use the LED Button in OH Rules:
- Define a item of type number:
Number LEDButton-Item “My LED Button” { zwave=“81:command=central_scene” }
- in rules:
rule "LED Thermostat Button" when Item LEDButton-Item received update then logInfo("Thermostat Button", "Status: " + LEDButton-Item.state) // do rule logic end
you will get some “Protocol error (CAN), resending” in your log - that’s the handicap of this workaround. But in this way you get a update everytime the button is pushed and can react in your rule.