-
Notifications
You must be signed in to change notification settings - Fork 638
SCHEDULER
SCHEDULER module (source code(1))
Introduced in version 1.12.0
Original implementation by @faina09, ref. xoseperez/espurna#131(2)
Starting with version 1.16.0 uses generic time string specification string instead of separate weekdays, hour and minute strings. Format is based on systemd calendar events spec(3). Also, instead of module-bound actions, generic terminal command support(4) was included.
Sunrise / sunset calculations based on Sunrise equation(5). C++ code ported from Go implementation at nathan-osman/go-sunrise(6) by @nathan-osman. Altitude calculation implementation based on nathan-osman/go-sunrise#11(7) by @jrabasco
Starting with version 1.18.0 relative schedule type was added.
Configuration key | Build flag | Description |
---|---|---|
SCHEDULER_SUPPORT ( 1 by default, 0 to disable) |
Build scheduler module | |
SCHEDULER_MAX_SCHEDULES ( 10 by default, cannot be zero) |
Maximum amount of schedules that will be stored on the device | |
schRstrDays |
SCHEDULER_RESTORE_DAYS (applied to all schedules) |
1 (today and yesterday, default). Number of days to look back for schRestore# . Set to 0 to only check 00:00..NOW. Disable schRestore# for individual schedules. |
SCHEDULER_SUN_SUPPORT ( 0 by default, 1 to enable) |
Build sunrise & sunset module. Use sunrise or sunset keywords in the time string |
|
schLat |
SCHEDULER_LATITUDE |
Current latitude (float) |
schLong |
SCHEDULER_LONGITUDE |
Current longitude (float) |
schAlt |
SCHEDULER_ALTITUDE |
Current altitude aka elevation (float). Default is 0.0 , adjust for more precise time calculation. |
Configuration key | Build flag | Description |
---|---|---|
schType# |
Type of the n-th schedule. One of: unknown , disabled , calendar or relative . Note that unknown schedules cannot be saved in settings, and will be removed
|
|
schTime# |
Time specification at which the n-th schedule action should take place. See below for more information. | |
schAction# |
Action to perform for n-th schedule. w/ TERMINAL_SUPPORT=1 , uses terminal commands. When disabled, see below.
|
|
schRestore# |
SCHEDULER_RESTORE (applied to all schedules; 0 by default) |
0 (disabled, default) or 1 (enable) to attempt to trigger last missed schedule when device syncs time for the very first time. |
Command | Description |
---|---|
schedule |
shows scheduler status global configuration options |
schedule <ID> |
shows n-th schedule configuration options |
event |
shows info about sunrise, sunset and named events |
event <NAME> |
shows info about a specific event |
event <NAME> <DATETIME> |
sets event timestamp. Datetime is a timestamp in ISO 8601 format, either using an UTC time (Z or +00:00 at the end) or without it to use device local time |
Time string | When action would be triggered |
---|---|
12:00 |
at tweelve o'clock |
00:00 UTC |
at midnight UTC |
UTC |
at midnight UTC |
Sat,Sun 10:00 |
at ten o'clock on Saturday and Sunday |
13,15..17:00 |
at thirteen, fifteen, sixteen and seventeen o'clock |
01-01 06:00 |
at six o'clock on January 1st |
05-W2 02:00 |
at 2 o'clock of every day on the 2nd week of May |
12-L1,2 18:55 |
at eighteen fifty five on the second to last day and the last day of December |
*-1/5 5:00 |
at five o'clock on days 1, 6, 11, 16, 21, 26 and 31 |
Mon,Thu..Sat 10,15,20:30 |
at ten thirty, fifteen thirty and twenty thirty on Mondays, Thursdays, Fridays and Saturdays |
Expected format is YYYY-MM-DD
or MM-DD
, where
-
YYYY
is a year, a 4-digit number -
MM
is a month, 1–12 -
DD
is a day, 1–31
Expected format is either full or abbreviated name in English (case insensitive), or its ISO numeric value.
Quoting ISO 8601(8)
D is the weekday number, from 1 through 7, beginning with Monday and ending with Sunday.
Name | Abbreviation | Number |
---|---|---|
Monday |
Mon |
1 |
Tuesday |
Tue |
2 |
Wednesday |
Wed |
3 |
Thursday |
Thu |
4 |
Friday |
Fri |
5 |
Saturday |
Sat |
6 |
Sunday |
Sun |
7 |
Expected format is HH:MM
(24-hour)
-
HH
is an hour, 0–23 -
MM
is a minute, 0–59
Can be specified only once per string, generally right at the end. Case insensitive.
-
UTC
to use coordinated universal time(9) instead of local time.
When SUNRISE_SUN_SUPPORT=1
, additional keywords can be used in place of HH:MM
-
SUNRISE
to trigger schedule at the next sunrise. -
SUNSET
to trigger schedule at the next sunset.
Time string | When action would be triggered |
---|---|
05-* SUNRISE |
at sunrise during May |
Monday SUNSET |
at sunset, but only on Mondays |
While the actual sunrise and sunset time includes seconds, it is rounded down to the nearest minute value.
When using restore feature, both are respected for previous dates
- At least one element must appear in the string
-
YYYY-MM-DD
can be omitted from the string,*-*-*
is used by default - Weekdays can be omitted from the string and defaults to
Mon..Sun
-
HH:MM
can be omitted from the string and defaults to00:00
(midnight) -
*
can be used to match any year, month, day, hour or minute - Extra zero in front is not required for numbers less than 10
- Multiple months, days of month, weekdays, hours and minutes can be specified when separated with a
,
(comma) - Range of months, days of month, weekdays, hours and minutes can be specified by separating two values with a
..
(double period) - Comma and double period can be combined within one element
- In place of
DD
,W1–5
can be used to match a specific week number. - In place of
DD
,L1–31
can be used to match last day of the month as a starting point for the day number instead of its start. - In place of
DD
,L
to match the last day of the month -
/1–..
is a repetition suffix, which matches specific element and also any multiples of the repeat value, starting with the specified element itself. This suffix is allowed with month, day (includingL
), hour, minute
Action | Dependency | Format |
---|---|---|
relay |
RELAY_SUPPORT=1 |
relay <ID> <STATUS> , where ID is n-th relay and STATUS is one of: on , off or toggle
|
channel |
LIGHT_PROVIDER!=LIGHT_PROVIDER_NONE |
channel <ID> <VALUE> , where ID is n-th channel and VALUE is a value between 0 and 255 |
curtain |
CURTAIN_SUPPORT |
curtain <ID> <VALUE> , where ID is n-th curtain and VALUE is a value between 0 and 100 |
Time string | When action would be triggered |
---|---|
30 AFTER CAL#0 |
30 minutes after 1st (index 0) schedule action was triggered |
AFTER SUNRISE |
1 minute after sunrise |
30m BEFORE SUNSET |
30 minutes before sunset |
1h AFTER "something" |
1 hour after custom event with the name something
|
Expected format is <TIME> <WHEN> <EVENT>
-
<TIME>
- number of minutes or hours between the specified event and the current time -
<WHEN>
- eitherBEFORE
orAFTER
<EVENT>
- Can be omitted. For example
before EVENT
would mean1m before EVENT
- A number without
m
orh
suffix is interpretted asm
(minutes) - Same suffix cannot be specified multiple times (i.e.
1h2h
is invalid) - Value is expected to be less than
24h
(twenty four hours) for calendar, sunrise and sunset events - Named events are removed from memory after
1d
(one day) - Calendar events are removed from memory after
1d
(one day)
Custom event currently can only be created using the terminal command event
(see Terminal section above)
-
cal#N
orcalendar#N
, whereN
is Nth schedule (index starting from0
) -
"NAME"
where NAME is a user-created event -
SUNRISE
for sunrise, same as calendar keyword -
SUNSET
for sunset
- (1) https://github.com/xoseperez/espurna/blob/dev/code/espurna/scheduler.cpp
- (2) https://github.com/xoseperez/espurna/issues/131
- (3) https://www.freedesktop.org/software/systemd/man/latest/systemd.time.html#Calendar%20Events
- (4) https://github.com/xoseperez/espurna/wiki/Terminal
- (5) https://en.wikipedia.org/wiki/Sunrise_equation#Complete_calculation_on_Earth
- (6) https://github.com/nathan-osman/go-sunrise
- (7) https://github.com/nathan-osman/go-sunrise/pull/11
- (8) https://en.wikipedia.org/wiki/ISO_8601
- (9) https://en.wikipedia.org/wiki/Coordinated_Universal_Time
If you're looking for support:
- Issues: this is the most dynamic channel at the moment, you might find an answer to your question by searching open or closed issues.
- Wiki pages: might not be as up-to-date as we all would like (hey, you can also contribute in the documentation!).
- Gitter channel: you have better chances to get fast answers from project contributors or other ESPurna users. (also available with any Matrix client!)
- Issue a question: as a last resort, you can open new question issue on GitHub. Just remember: the more info you provide the more chances you'll have to get an accurate answer.
- Backup the stock firmware
- Flash a pre-built binary image
- Flash a virgin Itead Sonoff device without opening
- Flash TUYA-based device without opening
- Flash Shelly device without opening
- Using PlatformIO
- from Visual Studio Code
- Using Arduino IDE
- Build the Web Interface
- Over-the-air updates
- Two-step updates
- ESPurna OTA Manager
- NoFUSS
- Troubleshooting
- MQTT
- REST API
- Domoticz
- Home Assistant
- InfluxDB
- Prometheus metrics
- Thingspeak
- Alexa
- Google Home
- Architecture
- 3rd Party Plugins
- Coding style
- Pull Requests