Is it possible to simulate a Pushed 3 times or Held 3 times on a innovelli switch by example ?
You can use DataActions & DelayActions to create that effect.
Build something like this with the Actions editor for the Button Clicked event.
@Device.Switch = On
Delay 500ms
@Device.Switch = Off
Delay 500ms
@Device.Switch = On
Delay 500ms
@Device.Switch = Off
Delay 500ms
@Device.Switch = On
Delay 500ms
@Device.Switch = Off
Delay 500ms
It does not work. I see the switch flashing 3 times for 3 off but nothing is triggered. I also tried only 3 on (without off) and it does not work.
In the device there is a command call Push which is for that function, but again I have to pass the parameter 3 to activate the 3 times click. If we can find a way to send the parameter with the command then everything will be perfect.