From bdd701a842eccb4cce7c40033cf75710ccf88177 Mon Sep 17 00:00:00 2001 From: Jmspencer41 Date: Wed, 13 Aug 2025 15:32:36 -0400 Subject: [PATCH] Finnished example program --- main/main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/main/main.c b/main/main.c index ec14a35..9cdb403 100644 --- a/main/main.c +++ b/main/main.c @@ -150,7 +150,6 @@ void app_main(void) ESP_ERROR_CHECK(esp_zb_platform_config(&config)); // Apply the configuration to board - // === CREATE TASK 1: LED CONTROL === // xTaskCreate = create a new task (mini-program that runs independently) xTaskCreate(led_task, // Function to run (defined above) "LED_Task", // Name for debugging (shows in task monitor) @@ -159,7 +158,6 @@ void app_main(void) 1, // Priority 1-25 (1=lowest, 25=highest priority) NULL); // Task handle (we don't need to control task later) - // === CREATE TASK 2: ZIGBEE COMMUNICATION === xTaskCreate(zigbee_task, // Function to run (defined above) "Zigbee_Task", // Name for debugging 4096, // Larger stack - Zigbee needs more memory -- 2.49.1