From 8a5e03de966623cd667f2524bd6ef106840dfe25 Mon Sep 17 00:00:00 2001 From: Michael Ingraham <34340210+meingraham@users.noreply.github.com> Date: Tue, 27 Aug 2019 12:12:03 -0400 Subject: [PATCH] Updated Rule Cookbook (markdown) --- Rule-Cookbook.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rule-Cookbook.md b/Rule-Cookbook.md index 28330b9d..7c56a7e2 100644 --- a/Rule-Cookbook.md +++ b/Rule-Cookbook.md @@ -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)