ESP32-C3 RC

This commit is contained in:
2025-01-02 02:16:07 -05:00
parent 3b5681017f
commit 0c98d7ab25
5 changed files with 5 additions and 5 deletions

View File

@@ -740,9 +740,9 @@ static void led_task (void *pyParameter) {
while(1)
{
ESP_LOGI(TAG, "Turning the LED %s!", s_led_state == true ? "ON" : "OFF");
gpio_set_level(BLINK_GPIO, s_led_state);
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;
}
}