#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
int count = 0;
void app_main() {
printf("Hello, Wokwi!\n");
while (true) {
vTaskDelay(1000 / portTICK_PERIOD_MS);
printf("%d\n",count++);
}
}
Loading
esp32-c6-devkitc-1
esp32-c6-devkitc-1