Implementation request: trigger on value
Posted: Friday 20 October 2017 14:21
Ciao,
it might be possible to implement a much sharp control of trigger?
as now if you want to trigger a device you have to enter
then in the execute section you can check its state as per your use:
what about replaving with
and by conseguence the execution part would be
it is applicable?

ciao
M
it might be possible to implement a much sharp control of trigger?
as now if you want to trigger a device you have to enter
Code: Select all
on = {devices = {'myDevice'}},Code: Select all
if device.state == "On" then
do my stuff
endCode: Select all
on = {devices = {'myDevice' == 'On'}},Code: Select all
do my stuffciao
M