Option to map Dimmers / Range Control to custom command (Window Shades)

There’s a few options here:

Since you can run a rule directly from a dashboard tile, you don’t need any Triggers in the rule. So you could just go straight to your flow and determine what action and conditions you want to take each time the rule is run.

Conceptually, something like the following might work

IF tiltLevel = 0
THEN
   setTiltLevel(50)
ELSE
   IF tiltLevel <=50
   THEN
       setTiltLevel(100)
   ELSE
       setTiltLevel(0)

Or in a Super Tile, you might have a few different preset ‘buttons’ on the tile to set your various tilt levels directly.

2 Likes