Page 1 of 1

Timer

Posted: 11 Jan 2019, 12:43
by rieders
Hello

I have a room humidity device.
At this I have now installed an ESP8266 with RelayBoard and DHT 11.
Firmware installed and everything is ready.
Now my problem.
Is there a timer?
I just want to run the humidification during the day.

Greetings André

Re: Timer

Posted: 11 Jan 2019, 13:19
by iron
Andre,

https://espeasy.readthedocs.io/en/lates ... Rules.html

Clock#Time=

Triggered every minute with day and time like: Mon,12:30 or Tue,14:45.
You can define triggers on specific days or all days using ‘All’ for days indicator.
You can also use wildcards in the time setting like All,**:00 to run every hour.

on Clock#Time=All,12:00 do //will run once a day at noon
GPIO,2,1
endon

on Clock#Time=All,**:30 do //will run half past every hour
GPIO,2,1
endon

on Clock#Time=All,%sunrise% do //will run at sunrise (%sunset% is also available)
GPIO,2,1
endon

-D