There’s a few options here:
- Add a SharpTools Rule directly to your dashboard (no status displayed)
- Add a Hyperlink enabled tile to your dashboard and use the
$.runRule()
syntax - Use a Super Tile to layout the content in the way you see fit and add actions (including rules) to the tile as you see fit
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.