Files
esp-rainmaker/components/esp_rainmaker
Piyush Shah 0fde281942 esp_rmaker_schedule: Use esp_schedule's concept of validity
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
                    }
                }
            }
        ]
    }
}
2023-11-07 23:13:53 +05:30
..

ESP RainMaker Agent Component

Component Registry

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.