Hi, I like the If then Logic of the routines in the App they provide lots of accessibility.
However, besides else and else if clauses I miss the option of comparisons and dynamic sets.
Say I want to get a notification to close my Window when the humidity inside is below to the humidity outside. This can’t be done right now as only comparisons with constants are possible.
IF
Humidity < Weather.Humidity
AND
Window OPEN
THEN
Notify “Close Window”
Further, Dynamic Sets/Writes would immensely helpful.
e.g. use of a button as a Dimmer.
IF
Button 1 Pressed
THEN
Lamp.Dimmer = Lamp.Dimmer + 5%