Rule Help - Persistent light state option with motion controller

Yes, it's not a supported device yet.

Try this: In the driver there is a method that looks like this:

private switchEvent(boolean on) {
    createEvent(name: "switch", value: on ? "on" : "off")
}

change it to this:

private switchEvent(boolean on) {
    createEvent(name: "switch", value: on ? "on" : "off", isStateChange: true)
}