[SOLVED] VELBUS + Openhab Rule not working

If you’re interested.

You can create the inverse rule to set the feedback led of the VMB6PBN

Correct LED states are

  • CLEAR_LED
  • SET_LED
  • SLOW_BLINK_LED
  • FAST_BLINK_LED
  • VERY_FAST_BLINK_LED

As mentioned here

You’ll need to add a Feedback_LED Item for button 3, but something like this will do the trick

rule "test Led feedback"
when
Item OUT_STP changed
then
    if (OUT_STP.state == ON) {
        Feedback_LED_23_3.sendCommand("SET_LED")
        }
    else {
        Feedback_LED_23_3.sendCommand("CLEAR_LED")
    }
end
1 Like