added a variation on Remote Control Button Multi-press

Federico Leoni 2019-08-03 17:38:44 -03:00
parent 456dbeef71
commit a0f1b9e570
1 changed files with 4 additions and 0 deletions

@ -1299,6 +1299,10 @@ Rule 1
ON Event#tora DO Publish cmnd/<topic>/IRSend {"Protocol":"NEC","Bits":32,"Data":"0x00FF30CF"} ENDON
ON <trigger> DO Backlog Event tora; Event tora; Event tora ENDON
```
Please note the rule could be quicker than necessary, in this case is advisable to use a delay between events calls:
```
ON <trigger> DO Backlog Event tora; Delay 10; Event tora; Delay 10; Event tora ENDON
```
//Enable the Rule set
```