OpenHab App Rollershutter control

You don’t even need a proxy item:

Rollershutter myRollershutter "My Roller Shutter [%d %%]" { ... }

Sitemap:

Switch item=myRollershutter // that gives you three buttons UP/STOP/DOWN
Switch item=myRollershutter mappings=[25="25%",50="50%",75="75%"] // that gives you three buttons 25%/50%/75%
Selection item=myRollershutter mappings=[UP="UP",25="25%",50="50%",75="75%",12="12%"] // gives you an even longer list
Setpoint item=myRollershutter minValue=0 maxValue=100 step=5 // set Position in 5% steps 

There is absolutely no need for a proxy item or a rule. All those Widgets can be used at the same time!

2 Likes