ESP32-C3 RC

This commit is contained in:
2025-01-02 02:19:10 -05:00
parent aa24238f74
commit d0770f18cc
2 changed files with 1 additions and 1 deletions

View File

@@ -743,7 +743,7 @@ static void led_task (void *pyParameter) {
ESP_LOGI(TAG, "Turning the LED %s!", s_led_state == true ? "ON" : "OFF");
gpio_set_level(BLINK_GPIO, true);//s_led_state);
vTaskDelay(CONFIG_BLINK_PERIOD / portTICK_PERIOD_MS);
//s_led_state != s_led_state;
s_led_state = !s_led_state;
}
}