… just a short notification for creating the rule.
Because of the AutoUpdateFeature i recommend to use the “received command” trigger, instead for example “received update”. Just see
(What is ItemStatePredictedEvent?) . Otherwise, in my case i run into a loop of triggering the Shuttercontroller because of this feature.
Here’s an example that work’s for me
rule "Alexa Shutter set to 0"
when
Item Alexa_RollerShutter1 received command OFF
then
RollerShutter1.sendCommand(0)
end
Have fun …