#include <M5Unified.h>
#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
uint32_t count=0;
void app_main() {
printf("Hello, Wokwi!\n");
//auto cfg = M5.config();
//M5.begin(cfg);
//M5.Display.setTextSize(3); // change text size
//M5.Display.print("Hello World!!!") ; // display Hello World! and one line is displayed on the screen
while (true) {
//M5.Display.setCursor(0, 20); // set character drawing coordinates (cursor position)
//M5.Display.printf("COUNT: %d\n", count); // display count on screen
count++;
vTaskDelay(1000 / portTICK_PERIOD_MS);
}
}