Updated Rule Cookbook (markdown)

Michael Ingraham 2019-08-27 12:12:03 -04:00
parent a65cc739d2
commit 8a5e03de96
1 changed files with 2 additions and 2 deletions

@ -473,7 +473,7 @@ Rule on switch1#state=1 do var1 100 endon on switch1#state=0 do backlog var1 0;
` on button1#state do backlog power1 %value%;`
* On Button press the Light in the Staircase will switch on/off
* On Button press the Light will toggle on/off
` RuleTimer1 600 endon`
@ -481,7 +481,7 @@ Rule on switch1#state=1 do var1 100 endon on switch1#state=0 do backlog var1 0;
` on Rules#Timer=1 do power1 off endon`
* After the RuleTimer1 expires the light will be switched off (if you forgot to switch it off)
* After the RuleTimer1 expires the light will be turned off (if you forgot to turn it off)
[Back To Top](#top)