Files
esp-rainmaker/components
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
..