Hi,
it's possible to trigger one event once a day automaticly.
i want to trigger the same event more then once a day in the rules
(stand alone)
i tried but i don't get it done
On Clock#Time=All,08:00 do
test
On Clock#Time=All,12:00 do
test
on test do
Pulse,13,0,900
Pulse,13,1,2400
Pulse,13,0,900
Pulse,13,1,2400
what's missing or isn't it possible
Regards
Jeffrey
is it possible to configure more then one event in rules?
Moderators: grovkillen, Stuntteam, TD-er
Re: is it possible to configure more then one event in rules?
Check the tutorial on rules, http://www.esp8266.nu/index.php/Tutorial_Rules
I think you need an "endon" for every "on"
Other than that I don't see any reason it shouldn't work, but I am not an expert on this...
I think you need an "endon" for every "on"
Other than that I don't see any reason it shouldn't work, but I am not an expert on this...
Re: is it possible to configure more then one event in rules?
Hi,
Yes i tried that
On Clock#Time=All,08:00 do
test
endon
On Clock#Time=All,12:00 do
test
endon
on test do
Pulse,13,0,900
Pulse,13,1,2400
Pulse,13,0,900
Pulse,13,1,2400
endon
when i set even one endon in the list it will not work
without endon's it runs only the first time
thanks
Yes i tried that
On Clock#Time=All,08:00 do
test
endon
On Clock#Time=All,12:00 do
test
endon
on test do
Pulse,13,0,900
Pulse,13,1,2400
Pulse,13,0,900
Pulse,13,1,2400
endon
when i set even one endon in the list it will not work
without endon's it runs only the first time
thanks
Re: is it possible to configure more then one event in rules?
Did you try something like this ?
On Clock#Time=All,08:00 do
Pulse,13,0,900
Pulse,13,1,2400
Pulse,13,0,900
Pulse,13,1,2400
endon
On Clock#Time=All,12:00 do
Pulse,13,0,900
Pulse,13,1,2400
Pulse,13,0,900
Pulse,13,1,2400
endon
On Clock#Time=All,08:00 do
Pulse,13,0,900
Pulse,13,1,2400
Pulse,13,0,900
Pulse,13,1,2400
endon
On Clock#Time=All,12:00 do
Pulse,13,0,900
Pulse,13,1,2400
Pulse,13,0,900
Pulse,13,1,2400
endon
Re: is it possible to configure more then one event in rules?
Running "test" as a command will not work. You have to create an event like this:
Code: Select all
On Clock#Time=All,08:00 do
event test
endon
On Clock#Time=All,12:00 do
event test
endon
on test do
Pulse,13,0,900
Pulse,13,1,2400
Pulse,13,0,900
Pulse,13,1,2400
endon
Re: is it possible to configure more then one event in rules?
Thanks both solutions work
martinus your solution saves a lot of karakters
thanks a lot
martinus your solution saves a lot of karakters
thanks a lot
Who is online
Users browsing this forum: No registered users and 9 guests