#include <FastLED.h>
int seconds = 0;
int minutes = 0;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
Serial.print(minutes);
Serial.print(":");
Serial.print(seconds);
Serial.println();
if(seconds == 5){
seconds = 0;
minutes++;
}
seconds++;
delay(1000);
}