-
Hello, I have tried to control a dimmer with the values of a variable. dimmer "var1" %value% Unfortunately without success. Goal: Thanks in advance... |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The syntax is In case of "when var1 is updated", it could also be |
Beta Was this translation helpful? Give feedback.
The syntax is
Dimmer %var1%
which only works in a rule. meaning that the rest depends on your trigger for when to invoke the command.In case of "when var1 is updated", it could also be
on var1#state do Dimmer %value% endon
Using
%value%
is only when referring to a value from the trigger for the rule.