@xbmcnut @oriolism hello is it possible to do a long press in esp easy rule ? im making a switch board with 4 channel relay and 4 switch but i want one of the button to act as master switch when long pressed everything ON long pressed again everything OFF is it possible?
so far my rule is this.
on button1#button1 do
if [relay1#relay1] =0
GPIO,16,1
else
GPIO,16,0
endif
endon
on button2#button2 do
if [relay2#relay2] =0
GPIO,14,1
else
GPIO,14,0
endif
endon
on button3#button3 do
if [relay3#relay3] =0
GPIO,13,1
else
GPIO,13,0
endif
endon
on button4#button4 do
if [relay4#relay4] =0
GPIO,2,1
else
GPIO,2,0
endif
endon
Thank you