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