String scheduleJson = "[{hour:1, isFlashWindow: false}, {hour:2, isFlashWindow: false}, {hour:7.30, isFlashWindow: true}, {hour:8, isFlashWindow: false}]";
class Schedule{
public:
float hour;
bool isFlashWindow;
};
Schedule schedules[5] = {};
void setup() {
}
void loop() {
//how do I parse the scheduleJson into array of Schedule class
}