mirror of
https://github.com/espressif/esp-rainmaker.git
synced 2026-01-15 12:25:30 +00:00
Allow users to specify start and end time between which the schedule
will be active. A new object "validity" has been introduced for this.
Eg.
{
"Schedule": {
"Schedules": [
{
"name": "Evening",
"id": "8D37",
"operation": "add",
"validity": {
"start": 1698839416,
"end": 1698840916
},
"triggers": [
{
"m": 1053,
"d": 31
}
],
"action": {
"Light": {
"Power": true
}
}
}
]
}
}
ESP RainMaker Agent Component
This is the main firmware agent for ESP RainMaker, which will then pull in other required components. Please check the ESP RainMaker documentation for details.