Skip to content

ESP32-C6 WROOM1-N8 Zigbee issue #11706

@Simonsaccount

Description

@Simonsaccount

Board

ESP32-C6 WROOM1-N8

Device Description

I use an ESP-32-C6-WROOM1-N8 Module on custom PCB.

Hardware Configuration

here is the connection of the modeule:
ESP32-USB.pdf

Version

v3.3.0

Type

Bug

IDE Name

Arduino IDE

Operating System

Linux Mint

Flash frequency

80MHz

PSRAM enabled

yes

Upload speed

921600

Description

I am running an ESP32 Module and could sucessfully program it before. Playing around with Serial, ADC, Timer and Wifi worked all like a charm. Now I wanted to test the Zigbee functionality and played around with the "Color dimmable Light" example sketch, provided with the Arduino. Upload is running fine but the Device is not running properly - I tend to lose Serial connection, Zigbee is not starting.

I assume someting might be wrong with my configuration or specifically for the WROMM1-N8 module as the example is running fine on my other board.

Sketch

// Copyright 2024 Espressif Systems (Shanghai) PTE LTD
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at

//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

/**
 * @brief This example demonstrates Zigbee Color Dimmable light bulb.
 *
 * The example demonstrates how to use Zigbee library to create an end device with
 * color dimmable light end point.
 * The light bulb is a Zigbee end device, which is controlled by a Zigbee coordinator.
 *
 * Proper Zigbee mode must be selected in Tools->Zigbee mode
 * and also the correct partition scheme must be selected in Tools->Partition Scheme.
 *
 * Please check the README.md for instructions and more detailed description.
 *
 * Created by Jan Procházka (https://github.com/P-R-O-C-H-Y/)
 */

#ifndef ZIGBEE_MODE_ED
#error "Zigbee end device mode is not selected in Tools->Zigbee mode"
#endif

#include "Zigbee.h"

/* Zigbee color dimmable light configuration */
#define ZIGBEE_RGB_LIGHT_ENDPOINT 10
uint8_t led = RGB_BUILTIN;
uint8_t button = BOOT_PIN;

ZigbeeColorDimmableLight zbColorLight = ZigbeeColorDimmableLight(ZIGBEE_RGB_LIGHT_ENDPOINT);

/********************* RGB LED functions **************************/
void setRGBLight(bool state, uint8_t red, uint8_t green, uint8_t blue, uint8_t level) {
  if (!state) {
    rgbLedWrite(led, 0, 0, 0);
    return;
  }
  float brightness = (float)level / 255;
  rgbLedWrite(led, red * brightness, green * brightness, blue * brightness);
}

// Create a task on identify call to handle the identify function
void identify(uint16_t time) {
  static uint8_t blink = 1;
  log_d("Identify called for %d seconds", time);
  if (time == 0) {
    // If identify time is 0, stop blinking and restore light as it was used for identify
    zbColorLight.restoreLight();
    return;
  }
  rgbLedWrite(led, 255 * blink, 255 * blink, 255 * blink);
  blink = !blink;
}

/********************* Arduino functions **************************/
void setup() {
  Serial.begin(115200);

  // Init RMT and leave light OFF
  rgbLedWrite(led, 0, 0, 0);

  // Init button for factory reset
  pinMode(button, INPUT_PULLUP);

  // Set callback function for light change
  zbColorLight.onLightChange(setRGBLight);

  // Optional: Set callback function for device identify
  zbColorLight.onIdentify(identify);

  // Optional: Set Zigbee device name and model
  zbColorLight.setManufacturerAndModel("Espressif", "ZBColorLightBulb");

  // Add endpoint to Zigbee Core
  Serial.println("Adding ZigbeeLight endpoint to Zigbee Core");
  Zigbee.addEndpoint(&zbColorLight);

  // When all EPs are registered, start Zigbee in End Device mode
  if (!Zigbee.begin()) {
    Serial.println("Zigbee failed to start!");
    Serial.println("Rebooting...");
    ESP.restart();
  }
  Serial.println("Connecting to network");
  while (!Zigbee.connected()) {
    Serial.print(".");
    delay(100);
  }
  Serial.println();
}

void loop() {
  // Checking button for factory reset
  if (digitalRead(button) == LOW) {  // Push button pressed
    // Key debounce handling
    delay(100);
    int startTime = millis();
    while (digitalRead(button) == LOW) {
      delay(50);
      if ((millis() - startTime) > 3000) {
        // If key pressed for more than 3secs, factory reset Zigbee and reboot
        Serial.println("Resetting Zigbee to factory and rebooting in 1s.");
        delay(1000);
        Zigbee.factoryReset();
      }
    }
    // Increase blightness by 50 every time the button is pressed
    zbColorLight.setLightLevel(zbColorLight.getLightLevel() + 50);
  }
  delay(100);
}

Debug Message

Sketch uses 1039583 bytes (79%) of program storage space. Maximum is 1310720 bytes.
Global variables use 31544 bytes (9%) of dynamic memory, leaving 296136 bytes for local variables. Maximum is 327680 bytes.
esptool v5.0.0
Serial port /dev/ttyACM0:
Connecting...
Connected to ESP32-C6 on /dev/ttyACM0:
Chip type:          ESP32-C6 (QFN40) (revision v0.2)
Features:           Wi-Fi 6, BT 5 (LE), IEEE802.15.4, Single Core + LP Core, 160MHz
Crystal frequency:  40MHz
USB mode:           USB-Serial/JTAG
MAC:                58:8c:81:ff:fe:3a:d9:10
BASE MAC:           58:8c:81:3a:d9:10
MAC_EXT:            ff:fe

Uploading stub flasher...
Running stub flasher...
Stub flasher running.
Changing baud rate to 921600...
Changed.

Configuring flash size...
Erasing flash memory (this may take a while)...
Flash memory erased successfully in 1.1 seconds.
Compressed 21088 bytes to 13375...

Writing at 0x00000000 [                              ]   0.0% 0/13375 bytes... 

Writing at 0x00005260 [==============================] 100.0% 13375/13375 bytes... 
Wrote 21088 bytes (13375 compressed) at 0x00000000 in 0.1 seconds (1448.3 kbit/s).
Hash of data verified.
Compressed 3072 bytes to 176...

Writing at 0x00008000 [                              ]   0.0% 0/176 bytes... 

Writing at 0x00008c00 [==============================] 100.0% 176/176 bytes... 
Wrote 3072 bytes (176 compressed) at 0x00008000 in 0.0 seconds (3204.2 kbit/s).
Hash of data verified.
Compressed 8192 bytes to 47...

Writing at 0x0000e000 [                              ]   0.0% 0/47 bytes... 

Writing at 0x00010000 [==============================] 100.0% 47/47 bytes... 
Wrote 8192 bytes (47 compressed) at 0x0000e000 in 0.0 seconds (4705.0 kbit/s).
Hash of data verified.
Compressed 1039696 bytes to 502759...

Writing at 0x00010000 [                              ]   0.0% 0/502759 bytes... 

Writing at 0x0001e90a [                              ]   3.3% 16384/502759 bytes... 

Writing at 0x0002e8ed [>                             ]   6.5% 32768/502759 bytes... 

Writing at 0x0003ea9f [=>                            ]   9.8% 49152/502759 bytes... 

Writing at 0x0004a261 [==>                           ]  13.0% 65536/502759 bytes... 

Writing at 0x00052fb5 [===>                          ]  16.3% 81920/502759 bytes... 

Writing at 0x00058ffc [====>                         ]  19.6% 98304/502759 bytes... 

Writing at 0x0005f518 [=====>                        ]  22.8% 114688/502759 bytes... 

Writing at 0x00066118 [======>                       ]  26.1% 131072/502759 bytes... 

Writing at 0x0006d324 [=======>                      ]  29.3% 147456/502759 bytes... 

Writing at 0x00074a50 [========>                     ]  32.6% 163840/502759 bytes... 

Writing at 0x0007ca79 [=========>                    ]  35.8% 180224/502759 bytes... 

Writing at 0x0008524a [==========>                   ]  39.1% 196608/502759 bytes... 

Writing at 0x0008cf67 [===========>                  ]  42.4% 212992/502759 bytes... 

Writing at 0x000943e6 [============>                 ]  45.6% 229376/502759 bytes... 

Writing at 0x0009beea [=============>                ]  48.9% 245760/502759 bytes... 

Writing at 0x000a3bdc [==============>               ]  52.1% 262144/502759 bytes... 

Writing at 0x000ab91e [===============>              ]  55.4% 278528/502759 bytes... 

Writing at 0x000b332a [================>             ]  58.7% 294912/502759 bytes... 

Writing at 0x000bc744 [=================>            ]  61.9% 311296/502759 bytes... 

Writing at 0x000c4f1d [==================>           ]  65.2% 327680/502759 bytes... 

Writing at 0x000ccfa4 [===================>          ]  68.4% 344064/502759 bytes... 

Writing at 0x000d491b [====================>         ]  71.7% 360448/502759 bytes... 

Writing at 0x000dc8ce [=====================>        ]  75.0% 376832/502759 bytes... 

Writing at 0x000e3596 [======================>       ]  78.2% 393216/502759 bytes... 

Writing at 0x000e9aac [=======================>      ]  81.5% 409600/502759 bytes... 

Writing at 0x000efc83 [========================>     ]  84.7% 425984/502759 bytes... 

Writing at 0x000f6279 [=========================>    ]  88.0% 442368/502759 bytes... 

Writing at 0x000fc24d [==========================>   ]  91.2% 458752/502759 bytes... 

Writing at 0x001020bb [===========================>  ]  94.5% 475136/502759 bytes... 

Writing at 0x00108996 [============================> ]  97.8% 491520/502759 bytes... 

Writing at 0x0010dd50 [==============================] 100.0% 502759/502759 bytes... 
Wrote 1039696 bytes (502759 compressed) at 0x00010000 in 3.7 seconds (2254.5 kbit/s).
Hash of data verified.

Hard resetting via RTS pin...


=========================================


=========== Before Setup Start ===========
Chip Info:
------------------------------------------
  Model             : ESP32-C6
  Package           : 0
  Revision          : 0.02
  Cores             : 1
  CPU Frequency     : 160 MHz
  XTAL Frequency    : 4 MHz
  Features Bitfield : 0x00000052
  Embedded Flash    : No
  Embedded PSRAM    : No
  2.4GHESP-ROM:esp32c6-20220919
Build:Sep 19 2022
rst:0x15 (USB_UART_HPSYS),boot:0x2c (SPI_FAST_FLASH_BOOT)
Saved PC:0x40807504
SPIWP:0xee
mode:DIO, clock div:2
load:0x40875730,len:0x12e0
load:0x4086b910,len:0xda8
load:0x4086e610,len:0x3180
entry 0x4086b910
=========== Before Setup Start ===========
Chip Info:
------------------------------------------
  Model             : ESP32-C6
  Package           : 0
  Revision          : 0.02
  Cores             : 1
  CPU Frequency     : 160 MHz
  XTAL Frequency    : 40 MHz
  Features Bitfield : 0x00000052
  Embedded Flash    : No
  Embedded PSRAM    : No
  2.4GHz WiFi       : Yes
  Classic BT        : No
  BT Low Energy     : Yes
  IEEE 802.15.4     : Yes
------------------------------------------
INTERNAL Memory Info:
------------------------------------------
  Total Size        :   439580 B ( 429.3 KB)
  Free Bytes        :   398256 B ( 388.9 KB)
  Allocated Bytes   :    33636 B (  32.8 KB)
  Minimum Free Bytes:   398256 B ( 388.9 KB)
  Largest Free Block:   376820 B ( 368.0 KB)
------------------------------------------
Flash Info:
------------------------------------------
  Chip Size         :  8388608 B (8 MB)
  Block Size        :    65536 B (  64.0 KB)
  Sector Size       :     4096 B (   4.0 KB)
  Page Size         :      256 B (   0.2 KB)
  Bus Speed         : 40 MHz
  Bus Mode          : QIO
------------------------------------------
Partitions Info:
------------------------------------------
                nvs : addr: 0x00009000, size:    20.0 KB, type: DATA, subtype: NVS
            otadata : addr: 0x0000E000, size:     8.0 KB, type: DATA, subtype: OTA
               app0 : addr: 0x00010000, size:  1280.0 KB, type:  APP, subtype: OTA_0
               app1 : addr: 0x00150000, size:  1280.0 KB, type:  APP, subtype: OTA_1
             spiffs : addr: 0x00290000, size:  1388.0 KB, type: DATA, subtype: SPIFFS
         zb_storage : addr: 0x003EB000, size:    16.0 KB, type: DATA, subtype: FAT
             zb_fct : addr: 0x003EF000, size:     4.0 KB, type: DATA, subtype: FAT
           coredump : addr: 0x003F0000, size:    64.0 KB, type: DATA, subtype: COREDUMP
------------------------------------------
Software Info:
------------------------------------------
  Compile Date/Time : Aug  9 2025 09:19:02
  Compile Host OS   : linux
  ESP-IDF Version   : v5.5-1-gb66b5448e0
  Arduino Version   : 3.3.0
------------------------------------------
Board Info:
------------------------------------------
  Arduino Board     : ESP32C6_DEV
  Arduino Variant   : esp32c6
  Arduino FQBN      : esp32:esp32:esp32c6:UploadSpeed=921600,CDCOnBoot=cdc,CPUFreq=160,FlashFreq=80,FlashMode=qio,FlashSize=4M,PartitionScheme=zigbee,DebugLevel=debug,EraseFlash=all,JTAGAdapter=default,ZigbeeMode=ed_debug
============ Before Setup End ============
[   119][I][esp32-hal-periman.c:141] perimanSetPinBus(): Pin 12 already has type USB_DM (38) with bus 0x40812d00
[   120][I][esp32-hal-periman.c:141] perimanSetPinBus(): Pin 13 already has type USB_DP (39) with bus 0x40812d00
Adding ZigbeeLight endpoint to Zigbee Core
[   122][D][ZigbeeCore.cpp:101] addEndpoint(): Endpoint: 10, Device ID: 0x0102
[   122][D][ZigbeeCore.cpp:149] zigbeeInit(): Initialize Zigbee stack
[   191][D][ZigbeeCore.cpp:156] zigbeeInit(): Register all Zigbee EPs in list
[   193][I][ZigbeeCore.cpp:164] zigbeeInit(): List of registered Zigbee EPs:
[   193][I][ZigbeeCore.cpp:166] zigbeeInit(): Device type: Color Dimmable Light Device, Endpoint: 10, Device ID: 0x0102
[   198][I][ZigbeeCore.cpp:260] esp_zb_app_signal_handler(): Zigbee stack initialized
[   199][D][ZigbeeCore.cpp:261] esp_zb_app_signal_handler(): Zigbee channel mask: 0x07fff800
[   202][I][ZigbeeCore.cpp:267] esp_zb_app_signal_handler(): Device started up in  factory-reset mode
[   202][I][ZigbeeCore.cpp:274] esp_zb_app_signal_handler(): Start network steering
Connecting to network
.[esp32-hal-periman.c:141] perimanSetPinBus(): Pin 13 already has type USB_DP (39) with bus 0x40812d00

[   239][D][ZigbeeCore.cpp:101] addEndpoint(): Endpoint: 10, Device ID: 0x0102
[   239][D][ZigbeeCore.cpp:149] zigbeeInit(): Initialize Zigbee stack
ESP-ROM:esp32c6-20220919
Build:Sep 19 2022
rst:0x15 (USB_UART_HPSYS),boot:0x2c (SPI_FAST_FLASH_BOOT)
Saved PC:0x4209f6b2
SPIWP:0xee
mode:DIO, clock div:2
load:0x40875730,len:0x12e0
load:0x4086b910,len:0xda8
load:0x4086e610,len:0x3180
entry 0x4086b910
=========== Before Setup Start ===========
Chip Info:
------------------------------------------
  Model             : ESP32-C6
  Package           : 0
  Revision          : 0.02
  Cores             : 1
  CPU Frequency     : 160 MHz
  XTAL Frequency    : 40 MHz
  Features Bitfield : 0x00000052
  Embedded Flash    : No
  Embedded PSRAM    : No
  2.4GHz WiFi       : Yes
  Classic BT        : No
  BT Low Energy     : Yes
  IEEE 802.15.4     : Yes
------------------------------------------
INTERNAL Memory Info:
------------------------------------------
  Total Size        :   439580 B ( 429.3 KB)
  Free Bytes        :   398256 B ( 388.9 KB)
  Allocated Bytes   :    33636 B (  32.8 KB)
  Minimum Free Bytes:   398256 B ( 388.9 KB)
  Largest Free Block:   376820 B ( 368.0 KB)
------------------------------------------
Flash Info:
------------------------------------------
  Chip Size         :  8388608 B (8 MB)
  Block Size        :    65536 B (  64.0 KB)
  Sector Size       :     4096 B (   4.0 KB)
  Page Size         :      256 B (   0.2 KB)
  Bus Speed         : 40 MHz
  Bus Mode          : QIO
------------------------------------------
Partitions Info:
------------------------------------------
                nvs : addr: 0x00009000, size:    20.0 KB, type: DATA, subtype: NVS
            otadata : addr: 0x0000E000, size:     8.0 KB, type: DATA, subtype: OTA
               app0 : addr: 0x00010000, size:  1280.0 KB, type:  APP, subtype: OTA_0
               app1 : addr: 0x00150000, size:  1280.0 KB, type:  APP, subtype: OTA_1
             spiffs : addr: 0x00290000, size:  1388.0 KB, type: DATA, subtype: SPIFFS
         zb_storage : addr: 0x003EB000, size:    16.0 KB, type: DATA, subtype: FAT
             zb_fct : addr: 0x003EF000, size:     4.0 KB, type: DATA, subtype: FAT
           coredump : addr: 0x003F0000, size:    64.0 KB, type: DATA, subtype: COREDUMP
------------------------------------------
Software Info:
------------------------------------------
  Compile Date/Time : Aug  9 2025 09:19:02
  Compile Host OS   : linux
  ESP-IDF Version   : v5.5-1-gb66b5448e0
  Arduino Version   : 3.3.0
------------------------------------------
Board Info:
------------------------------------------
  Arduino Board     : ESP32C6_DEV
  Arduino Variant   : esp32c6
  Arduino FQBN      : esp32:esp32:esp32c6:UploadSpeed=921600,CDCOnBoot=cdc,CPUFreq=160,FlashFreq=80,FlashMode=qio,FlashSize=4M,PartitionScheme=zigbee,DebugLevel=debug,EraseFlash=all,JTAGAdapter=default,ZigbeeMode=ed_debug
============ Before Setup End ============
[   119][I][esp32-hal-periman.c:141] perimanSetPinBus(): Pin 12 already has type USB_DM (38) with bus 0x40812d00
[   120][I][esp32-hal-periman.c:141] perimanSetPinBus(): Pin 13 already has type USB_DP (39) with bus 0x40812d00
Adding ZigbeeLight endpoint to Zigbee Core
[   122][D][ZigbeeCore.cpp:101] addEndpoint(): Endpoint: 10, Device ID: 0x0102
[   122][D][ZigbeeCore.cpp:149] zigbeeInit(): Initialize Zigbee stack
[   194][D][ZigbeeCore.cpp:156] zigbeeInit(): Register all Zigbee EPs in list
[   197][I][ZigbeeCore.cpp:164] zigbeeInit(): List of registered Zigbee EPs:
[   197][I][ZigbeeCore.cpp:166] zigbeeInit(): Device type: Color Dimmable Light Device, Endpoint: 10, Device ID: 0x0102
[   202][I][ZigbeeCore.cpp:260] esp_zb_app_signal_handler(): Zigbee stack initialized
[   203][D][ZigbeeCore.cpp:261] esp_zb_app_signal_handler(): Zigbee channel mask: 0x07fff800
[   206][I][ZigbeeCore.cpp:267] esp_zb_app_signal_handler(): Device started up in  factory-reset mode
[   206][I][ZigbeeCore.cpp:274] esp_zb_app_signal_handler(): Start network steering
Connecting to network
.[esp32-hal-periman.c:141] perimanSetPinBus(): Pin 13 already has type USB_DP (39) with bus 0x40812d00



[   239][D][ZigbeeCore.cpp:101] addEndpoint(): Endpoint: 10, Device ID: 0x0102

[   239][D][ZigbeeCore.cpp:149] zigbeeInit(): Initialize Zigbee stack

ESP-ROM:esp32c6-20220919
Build:Sep 19 2022
rst:0x15 (USB_UART_HPSYS),boot:0x2c (SPI_FAST_FLASH_BOOT)
Saved PC:0x40017600
SPIWP:0xee
mode:DIO, clock div:2
load:0x40875730,len:0x12e0
load:0x4086b910,len:0xda8
load:0x4086e610,len:0x3180
entry 0x4086b910
=========== Before Setup Start ===========
Chip Info:
------------------------------------------
  Model             : ESP32-C6
  Package           : 0
  Revision          : 0.02
  Cores             : 1
  CPU Frequency     : 160 MHz
  XTAL Frequency    : 40 MHz
  Features Bitfield : 0x00000052
  Embedded Flash    : No
  Embedded PSRAM    : No
  2.4GHz WiFi       : Yes
  Classic BT        : No
  BT Low Energy     : Yes
  IEEE 802.15.4     : Yes
------------------------------------------
INTERNAL Memory Info:
------------------------------------------
  Total Size        :   439580 B ( 429.3 KB)
  Free Bytes        :   398256 B ( 388.9 KB)
  Allocated Bytes   :    33636 B (  32.8 KB)
  Minimum Free Bytes:   398256 B ( 388.9 KB)
  Largest Free Block:   376820 B ( 368.0 KB)
------------------------------------------
Flash Info:
------------------------------------------
  Chip Size         :  8388608 B (8 MB)
  Block Size        :    65536 B (  64.0 KB)
  Sector Size       :     4096 B (   4.0 KB)
  Page Size         :      256 B (   0.2 KB)
  Bus Speed         : 40 MHz
  Bus Mode          : QIO
------------------------------------------
Partitions Info:
------------------------------------------
                nvs : addr: 0x00009000, size:    20.0 KB, type: DATA, subtype: NVS
            otadata : addr: 0x0000E000, size:     8.0 KB, type: DATA, subtype: OTA
               app0 : addr: 0x00010000, size:  1280.0 KB, type:  APP, subtype: OTA_0
               app1 : addr: 0x00150000, size:  1280.0 KB, type:  APP, subtype: OTA_1
             spiffs : addr: 0x00290000, size:  1388.0 KB, type: DATA, subtype: SPIFFS
         zb_storage : addr: 0x003EB000, size:    16.0 KB, type: DATA, subtype: FAT
             zb_fct : addr: 0x003EF000, size:     4.0 KB, type: DATA, subtype: FAT
           coredump : addr: 0x003F0000, size:    64.0 KB, type: DATA, subtype: COREDUMP
------------------------------------------
Software Info:
------------------------------------------
  Compile Date/Time : Aug  9 2025 09:19:02
  Compile Host OS   : linux
  ESP-IDF Version   : v5.5-1-gb66b5448e0
  Arduino Version   : 3.3.0
------------------------------------------
Board Info:
------------------------------------------
  Arduino Board     : ESP32C6_DEV
  Arduino Variant   : esp32c6
  Arduino FQBN      : esp32:esp32:esp32c6:UploadSpeed=921600,CDCOnBoot=cdc,CPUFreq=160,FlashFreq=80,FlashMode=qio,FlashSize=4M,PartitionScheme=zigbee,DebugLevel=debug,EraseFlash=all,JTAGAdapter=default,ZigbeeMode=ed_debug
============ Before Setup End ============
[   119][I][esp32-hal-periman.c:141] perimanSetPinBus(): Pin 12 already has type USB_DM (38) with bus 0x40812d00
[   120][I][esp32-hal-periman.c:141] perimanSetPinBus(): Pin 13 already has type USB_DP (39) with bus 0x40812d00
Adding ZigbeeLight endpoint to Zigbee Core
[   122][D][ZigbeeCore.cpp:101] addEndpoint(): Endpoint: 10, Device ID: 0x0102
[   122][D][ZigbeeCore.cpp:149] zigbeeInit(): Initialize Zigbee stack
[   194][D][ZigbeeCore.cpp:156] zigbeeInit(): Register all Zigbee EPs in list
[   196][I][ZigbeeCore.cpp:164] zigbeeInit(): List of registered Zigbee EPs:
[   196][I][ZigbeeCore.cpp:166] zigbeeInit(): Device type: Color Dimmable Light Device, Endpoint: 10, Device ID: 0x0102
[   201][I][ZigbeeCore.cpp:260] esp_zb_app_signal_handler(): Zigbee stack initialized
[   202][D][ZigbeeCore.cpp:261] esp_zb_app_signal_handler(): Zigbee channel mask: 0x07fff800
[   205][I][ZigbeeCore.cpp:267] esp_zb_app_signal_handler(): Device started up in  factory-reset mode
[   205][I][ZigbeeCore.cpp:274] esp_zb_app_signal_handler(): Start network steering
Connecting to network
.[esp32-hal-periman.c:141] perimanSetPinBus(): Pin 13 already has type USB_DP (39) with bus 0x40812d00

[   239][D][ZigbeeCore.cpp:101] addEndpoint(): Endpoint: 10, Device ID: 0x0102
[   239][D][ZigbeeCore.cpp:149] zigbeeInit(): Initialize Zigbee stack
ESP-ROM:esp32c6-20220919
Build:Sep 19 2022
rst:0x15 (USB_UART_HPSYS),boot:0x2c (SPI_FAST_FLASH_BOOT)
Saved PC:0x4209f6ae
SPIWP:0xee
mode:DIO, clock div:2
load:0x40875730,len:0x12e0
load:0x4086b910,len:0xda8
load:0x4086e610,len:0x3180
entry 0x4086b910
=========== Before Setup Start ===========
Chip Info:
------------------------------------------
  Model             : ESP32-C6
  Package           : 0
  Revision          : 0.02
  Cores             : 1
  CPU Frequency     : 160 MHz
  XTAL Frequency    : 40 MHz
  Features Bitfield : 0x00000052
  Embedded Flash    : No
  Embedded PSRAM    : No
  2.4GHz WiFi       : Yes
  Classic BT        : No
  BT Low Energy     : Yes
  IEEE 802.15.4     : Yes
------------------------------------------
INTERNAL Memory Info:
------------------------------------------
  Total Size        :   439580 B ( 429.3 KB)
  Free Bytes        :   398256 B ( 388.9 KB)
  Allocated Bytes   :    33636 B (  32.8 KB)
  Minimum Free Bytes:   398256 B ( 388.9 KB)
  Largest Free Block:   376820 B ( 368.0 KB)
------------------------------------------
Flash Info:
------------------------------------------
  Chip Size         :  8388608 B (8 MB)
  Block Size        :    65536 B (  64.0 KB)
  Sector Size       :     4096 B (   4.0 KB)
  Page Size         :      256 B (   0.2 KB)
  Bus Speed         : 40 MHz
  Bus Mode          : QIO
------------------------------------------
Partitions Info:
------------------------------------------
                nvs : addr: 0x00009000, size:    20.0 KB, type: DATA, subtype: NVS
            otadata : addr: 0x0000E000, size:     8.0 KB, type: DATA, subtype: OTA
               app0 : addr: 0x00010000, size:  1280.0 KB, type:  APP, subtype: OTA_0
               app1 : addr: 0x00150000, size:  1280.0 KB, type:  APP, subtype: OTA_1
             spiffs : addr: 0x00290000, size:  1388.0 KB, type: DATA, subtype: SPIFFS
         zb_storage : addr: 0x003EB000, size:    16.0 KB, type: DATA, subtype: FAT
             zb_fct : addr: 0x003EF000, size:     4.0 KB, type: DATA, subtype: FAT
           coredump : addr: 0x003F0000, size:    64.0 KB, type: DATA, subtype: COREDUMP
------------------------------------------
Software Info:
------------------------------------------
  Compile Date/Time : Aug  9 2025 09:19:02
  Compile Host OS   : linux
  ESP-IDF Version   : v5.5-1-gb66b5448e0
  Arduino Version   : 3.3.0
------------------------------------------
Board Info:
------------------------------------------
  Arduino Board     : ESP32C6_DEV
  Arduino Variant   : esp32c6
  Arduino FQBN      : esp32:esp32:esp32c6:UploadSpeed=921600,CDCOnBoot=cdc,CPUFreq=160,FlashFreq=80,FlashMode=qio,FlashSize=4M,PartitionScheme=zigbee,DebugLevel=debug,EraseFlash=all,JTAGAdapter=default,ZigbeeMode=ed_debug
============ Before Setup End ============
[   119][I][esp32-hal-periman.c:141] perimanSetPinBus(): Pin 12 already has type USB_DM (38) with bus 0x40812d00
[   120][I][esp32-hal-periman.c:141] perimanSetPinBus(): Pin 13 already has type USB_DP (39) with bus 0x40812d00
Adding ZigbeeLight endpoint to Zigbee Core
[   122][D][ZigbeeCore.cpp:101] addEndpoint(): Endpoint: 10, Device ID: 0x0102
[   122][D][ZigbeeCore.cpp:149] zigbeeInit(): Initialize Zigbee stack
[   193][D][ZigbeeCore.cpp:156] zigbeeInit(): Register all Zigbee EPs in list
[   196][I][ZigbeeCore.cpp:164] zigbeeInit(): List of registered Zigbee EPs:
[   196][I][ZigbeeCore.cpp:166] zigbeeInit(): Device type: Color Dimmable Light Device, Endpoint: 10, Device ID: 0x0102
[   201][I][ZigbeeCore.cpp:260] esp_zb_app_signal_handler(): Zigbee stack initialized
[   202][D][ZigbeeCore.cpp:261] esp_zb_app_signal_handler(): Zigbee channel mask: 0x07fff800
[   205][I][ZigbeeCore.cpp:267] esp_zb_app_signal_handler(): Device started up in  factory-reset mode
[   205][I][ZigbeeCore.cpp:274] esp_zb_app_signal_handler(): Start network steering
Connecting to network
.[esp32-hal-periman.c:141] perimanSetPinBus(): Pin 13 already has type USB_DP (39) with bus 0x40812d00

[   239][D][ZigbeeCore.cpp:101] addEndpoint(): Endpoint: 10, Device ID: 0x0102
[   239][D][ZigbeeCore.cpp:149] zigbeeInit(): Initialize Zigbee stack
ESP-ROM:esp32c6-20220919
Build:Sep 19 2022
rst:0x15 (USB_UART_HPSYS),boot:0x2c (SPI_FAST_FLASH_BOOT)
Saved PC:0x4000440c
SPIWP:0xee
mode:DIO, clock div:2
load:0x40875730,len:0x12e0
load:0x4086b910,len:0xda8
load:0x4086e610,len:0x3180
entry 0x4086b910
=========== Before Setup Start ===========
Chip Info:
------------------------------------------
  Model             : ESP32-C6
  Package           : 0
  Revision          : 0.02
  Cores             : 1
  CPU Frequency     : 160 MHz
  XTAL Frequency    : 40 MHz
  Features Bitfield : 0x00000052
  Embedded Flash    : No
  Embedded PSRAM    : No
  2.4GHz WiFi       : Yes
  Classic BT        : No
  BT Low Energy     : Yes
  IEEE 802.15.4     : Yes
------------------------------------------
INTERNAL Memory Info:
------------------------------------------
  Total Size        :   439580 B ( 429.3 KB)
  Free Bytes        :   398256 B ( 388.9 KB)
  Allocated Bytes   :    33636 B (  32.8 KB)
  Minimum Free Bytes:   398256 B ( 388.9 KB)
  Largest Free Block:   376820 B ( 368.0 KB)
------------------------------------------
Flash Info:
------------------------------------------
  Chip Size         :  8388608 B (8 MB)
  Block Size        :    65536 B (  64.0 KB)
  Sector Size       :     4096 B (   4.0 KB)
  Page Size         :      256 B (   0.2 KB)
  Bus Speed         : 40 MHz
  Bus Mode          : QIO
------------------------------------------
Partitions Info:
------------------------------------------
                nvs : addr: 0x00009000, size:    20.0 KB, type: DATA, subtype: NVS
            otadata : addr: 0x0000E000, size:     8.0 KB, type: DATA, subtype: OTA
               app0 : addr: 0x00010000, size:  1280.0 KB, type:  APP, subtype: OTA_0
               app1 : addr: 0x00150000, size:  1280.0 KB, type:  APP, subtype: OTA_1
             spiffs : addr: 0x00290000, size:  1388.0 KB, type: DATA, subtype: SPIFFS
         zb_storage : addr: 0x003EB000, size:    16.0 KB, type: DATA, subtype: FAT
             zb_fct : addr: 0x003EF000, size:     4.0 KB, type: DATA, subtype: FAT
           coredump : addr: 0x003F0000, size:    64.0 KB, type: DATA, subtype: COREDUMP
------------------------------------------
Software Info:
------------------------------------------
  Compile Date/Time : Aug  9 2025 09:19:02
  Compile Host OS   : linux
  ESP-IDF Version   : v5.5-1-gb66b5448e0
  Arduino Version   : 3.3.0
------------------------------------------
Board Info:
------------------------------------------
  Arduino Board     : ESP32C6_DEV
  Arduino Variant   : esp32c6
  Arduino FQBN      : esp32:esp32:esp32c6:UploadSpeed=921600,CDCOnBoot=cdc,CPUFreq=160,FlashFreq=80,FlashMode=qio,FlashSize=4M,PartitionScheme=zigbee,DebugLevel=debug,EraseFlash=all,JTAGAdapter=default,ZigbeeMode=ed_debug
============ Before Setup End ============
[   119][I][esp32-hal-periman.c:141] perimanSetPinBus(): Pin 12 already has type USB_DM (38) with bus 0x40812d00
[   120][I][esp32-hal-periman.c:141] perimanSetPinBus(): Pin 13 already has type USB_DP (39) with bus 0x40812d00
Adding ZigbeeLight endpoint to Zigbee Core
[   122][D][ZigbeeCore.cpp:101] addEndpoint(): Endpoint: 10, Device ID: 0x0102
[   122][D][ZigbeeCore.cpp:149] zigbeeInit(): Initialize Zigbee stack
[   194][D][ZigbeeCore.cpp:156] zigbeeInit(): Register all Zigbee EPs in list
[   197][I][ZigbeeCore.cpp:164] zigbeeInit(): List of registered Zigbee EPs:
[   197][I][ZigbeeCore.cpp:166] zigbeeInit(): Device type: Color Dimmable Light Device, Endpoint: 10, Device ID: 0x0102
[   202][I][ZigbeeCore.cpp:260] esp_zb_app_signal_handler(): Zigbee stack initialized
[   203][D][ZigbeeCore.cpp:261] esp_zb_app_signal_handler(): Zigbee channel mask: 0x07fff800
[   206][I][ZigbeeCore.cpp:267] esp_zb_app_signal_handler(): Device started up in  factory-reset mode
[   206][I][ZigbeeCore.cpp:274] esp_zb_app_signal_handler(): Start network steering
Connecting to network
.[esp32-hal-periman.c:141] perimanSetPinBus(): Pin 13 already has type USB_DP (39) with bus 0x40812d00

[   239][D][ZigbeeCore.cpp:101] addEndpoint(): Endpoint: 10, Device ID: 0x0102
[   239][D][ZigbeeCore.cpp:149] zigbeeInit(): Initialize Zigbee stack
ESP-ROM:esp32c6-20220919
Build:Sep 19 2022
rst:0x15 (USB_UART_HPSYS),boot:0x2c (SPI_FAST_FLASH_BOOT)
Saved PC:0x4209f6b6
SPIWP:0xee
mode:DIO, clock div:2
load:0x40875730,len:0x12e0
load:0x4086b910,len:0xda8
load:0x4086e610,len:0x3180
entry 0x4086b910
=========== Before Setup Start ===========
Chip Info:
------------------------------------------
  Model             : ESP32-C6
  Package           : 0
  Revision          : 0.02
  Cores             : 1
  CPU Frequency     : 160 MHz
  XTAL Frequency    : 40 MHz
  Features Bitfield : 0x00000052
  Embedded Flash    : No
  Embedded PSRAM    : No
  2.4GHz WiFi       : Yes
  Classic BT        : No
  BT Low Energy     : Yes
  IEEE 802.15.4     : Yes
------------------------------------------
INTERNAL Memory Info:
------------------------------------------
  Total Size        :   439580 B ( 429.3 KB)
  Free Bytes        :   398256 B ( 388.9 KB)
  Allocated Bytes   :    33636 B (  32.8 KB)
  Minimum Free Bytes:   398256 B ( 388.9 KB)
  Largest Free Block:   376820 B ( 368.0 KB)
------------------------------------------
Flash Info:
------------------------------------------
  Chip Size         :  8388608 B (8 MB)
  Block Size        :    65536 B (  64.0 KB)
  Sector Size       :     4096 B (   4.0 KB)
  Page Size         :      256 B (   0.2 KB)
  Bus Speed         : 40 MHz
  Bus Mode          : QIO
------------------------------------------
Partitions Info:
------------------------------------------
                nvs : addr: 0x00009000, size:    20.0 KB, type: DATA, subtype: NVS
            otadata : addr: 0x0000E000, size:     8.0 KB, type: DATA, subtype: OTA
               app0 : addr: 0x00010000, size:  1280.0 KB, type:  APP, subtype: OTA_0
               app1 : addr: 0x00150000, size:  1280.0 KB, type:  APP, subtype: OTA_1
             spiffs : addr: 0x00290000, size:  1388.0 KB, type: DATA, subtype: SPIFFS
         zb_storage : addr: 0x003EB000, size:    16.0 KB, type: DATA, subtype: FAT
             zb_fct : addr: 0x003EF000, size:     4.0 KB, type: DATA, subtype: FAT
           coredump : addr: 0x003F0000, size:    64.0 KB, type: DATA, subtype: COREDUMP
------------------------------------------
Software Info:
------------------------------------------
  Compile Date/Time : Aug  9 2025 09:19:02
  Compile Host OS   : linux
  ESP-IDF Version   : v5.5-1-gb66b5448e0
  Arduino Version   : 3.3.0
------------------------------------------
Board Info:
------------------------------------------
  Arduino Board     : ESP32C6_DEV
  Arduino Variant   : esp32c6
  Arduino FQBN      : esp32:esp32:esp32c6:UploadSpeed=921600,CDCOnBoot=cdc,CPUFreq=160,FlashFreq=80,FlashMode=qio,FlashSize=4M,PartitionScheme=zigbee,DebugLevel=debug,EraseFlash=all,JTAGAdapter=default,ZigbeeMode=ed_debug
============ Before Setup End ============
[   119][I][esp32-hal-periman.c:141] perimanSetPinBus(): Pin 12 already has type USB_DM (38) with bus 0x40812d00
[   120][I][esp32-hal-periman.c:141] perimanSetPinBus(): Pin 13 already has type USB_DP (39) with bus 0x40812d00
Adding ZigbeeLight endpoint to Zigbee Core
[   122][D][ZigbeeCore.cpp:101] addEndpoint(): Endpoint: 10, Device ID: 0x0102
[   122][D][ZigbeeCore.cpp:149] zigbeeInit(): Initialize Zigbee stack
[   193][D][ZigbeeCore.cpp:156] zigbeeInit(): Register all Zigbee EPs in list
[   196][I][ZigbeeCore.cpp:164] zigbeeInit(): List of registered Zigbee EPs:
[   196][I][ZigbeeCore.cpp:166] zigbeeInit(): Device type: Color Dimmable Light Device, Endpoint: 10, Device ID: 0x0102
[   201][I][ZigbeeCore.cpp:260] esp_zb_app_signal_handler(): Zigbee stack initialized
[   202][D][ZigbeeCore.cpp:261] esp_zb_app_signal_handler(): Zigbee channel mask: 0x07fff800
[   205][I][ZigbeeCore.cpp:267] esp_zb_app_signal_handler(): Device started up in  factory-reset mode
[   205][I][ZigbeeCore.cpp:274] esp_zb_app_signal_handler(): Start network steering
[esp32-hal-periman.c:141] perimanSetPinBus(): Pin 13 already has type USB_DP (39) with bus 0x40812d00

[   239][D][ZigbeeCore.cpp:101] addEndpoint(): Endpoint: 10, Device ID: 0x0102
[   239][D][ZigbeeCore.cpp:149] zigbeeInit(): Initialize Zigbee stack
ESP-ROM:esp32c6-20220919
Build:Sep 19 2022
rst:0x15 (USB_UART_HPSYS),boot:0x2c (SPI_FAST_FLASH_BOOT)
Saved PC:0x4209f6ae
SPIWP:0xee
mode:DIO, clock div:2
load:0x40875730,len:0x12e0
load:0x4086b910,len:0xda8
load:0x4086e610,len:0x3180
entry 0x4086b910
=========== Before Setup Start ===========
Chip Info:
------------------------------------------
  Model             : ESP32-C6
  Package           : 0
  Revision          : 0.02
  Cores             : 1
  CPU Frequency     : 160 MHz
  XTAL Frequency    : 40 MHz
  Features Bitfield : 0x00000052
  Embedded Flash    : No
  Embedded PSRAM    : No
  2.4GHz WiFi       : Yes
  Classic BT        : No
  BT Low Energy     : Yes
  IEEE 802.15.4     : Yes
------------------------------------------
INTERNAL Memory Info:
------------------------------------------
  Total Size        :   439580 B ( 429.3 KB)
  Free Bytes        :   398256 B ( 388.9 KB)
  Allocated Bytes   :    33636 B (  32.8 KB)
  Minimum Free Bytes:   398256 B ( 388.9 KB)
  Largest Free Block:   376820 B ( 368.0 KB)
------------------------------------------
Flash Info:
------------------------------------------
  Chip Size         :  8388608 B (8 MB)
  Block Size        :    65536 B (  64.0 KB)
  Sector Size       :     4096 B (   4.0 KB)
  Page Size         :      256 B (   0.2 KB)
  Bus Speed         : 40 MHz
  Bus Mode          : QIO
------------------------------------------
Partitions Info:
------------------------------------------
                nvs : addr: 0x00009000, size:    20.0 KB, type: DATA, subtype: NVS
            otadata : addr: 0x0000E000, size:     8.0 KB, type: DATA, subtype: OTA
               app0 : addr: 0x00010000, size:  1280.0 KB, type:  APP, subtype: OTA_0
               app1 : addr: 0x00150000, size:  1280.0 KB, type:  APP, subtype: OTA_1
             spiffs : addr: 0x00290000, size:  1388.0 KB, type: DATA, subtype: SPIFFS
         zb_storage : addr: 0x003EB000, size:    16.0 KB, type: DATA, subtype: FAT
             zb_fct : addr: 0x003EF000, size:     4.0 KB, type: DATA, subtype: FAT
           coredump : addr: 0x003F0000, size:    64.0 KB, type: DATA, subtype: COREDUMP
------------------------------------------
Software Info:
------------------------------------------
  Compile Date/Time : Aug  9 2025 09:19:02
  Compile Host OS   : linux
  ESP-IDF Version   : v5.5-1-gb66b5448e0
  Arduino Version   : 3.3.0
------------------------------------------
Board Info:
------------------------------------------
  Arduino Board     : ESP32C6_DEV
  Arduino Variant   : esp32c6
  Arduino FQBN      : esp32:esp32:esp32c6:UploadSpeed=921600,CDCOnBoot=cdc,CPUFreq=160,FlashFreq=80,FlashMode=qio,FlashSize=4M,PartitionScheme=zigbee,DebugLevel=debug,EraseFlash=all,JTAGAdapter=default,ZigbeeMode=ed_debug
============ Before Setup End ============
[   119][I][esp32-hal-periman.c:141] perimanSetPinBus(): Pin 12 already has type USB_DM (38) with bus 0x40812d00
[   120][I][esp32-hal-periman.c:141] perimanSetPinBus(): Pin 13 already has type USB_DP (39) with bus 0x40812d00
Adding ZigbeeLight endpoint to Zigbee Core
[   122][D][ZigbeeCore.cpp:101] addEndpoint(): Endpoint: 10, Device ID: 0x0102
[   122][D][ZigbeeCore.cpp:149] zigbeeInit(): Initialize Zigbee stack
[   193][D][ZigbeeCore.cpp:156] zigbeeInit(): Register all Zigbee EPs in list
[   195][I][ZigbeeCore.cpp:164] zigbeeInit(): List of registered Zigbee EPs:
[   196][I][ZigbeeCore.cpp:166] zigbeeInit(): Device type: Color Dimmable Light Device, Endpoint: 10, Device ID: 0x0102
[   202][I][ZigbeeCore.cpp:260] esp_zb_app_signal_handler(): Zigbee stack initialized
[   203][D][ZigbeeCore.cpp:261] esp_zb_app_signal_handler(): Zigbee channel mask: 0x07fff800
[   206][I][ZigbeeCore.cpp:267] esp_zb_app_signal_handler(): Device started up in  factory-reset mode
[   206][I][ZigbeeCore.cpp:274] esp_zb_app_signal_handler(): Start network steering
Connecting to network
. FQBN      : esp32:esp32:esp32c6:UploadSpeed=921600,CDCOnBoot=cdc,CPUFreq=160,FlashFreq=80,FlashMode=qio,FlashSize=4M,PartitionScheme=zigbee,DebugLevel=debug,EraseFlash=all,JTAGAdapter=default,ZigbeeMode=ed_debug
============ Before Setup End ============
ESP-ROM:esp32c6-20220919
Build:Sep 19 2022
rst:0x15 (USB_UART_HPSYS),boot:0x2c (SPI_FAST_FLASH_BOOT)
Saved PC:0x40804e96
SPIWP:0xee
mode:DIO, clock div:2
load:0x40875730,len:0x12e0
load:0x4086b910,len:0xda8
load:0x4086e610,len:0x3180
entry 0x4086b910
=========== Before Setup Start ===========
Chip Info:
------------------------------------------
  Model             : ESP32-C6
  Package           : 0
  Revision          : 0.02
  Cores             : 1
  CPU Frequency     : 160 MHz
  XTAL Frequency    : 40 MHz
  Features Bitfield : 0x00000052
  Embedded Flash    : No
  Embedded PSRAM    : No
  2.4GHz WiFi       : Yes
  Classic BT        : No
  BT Low Energy     : Yes
  IEEE 802.15.4     : Yes
------------------------------------------
INTERNAL Memory Info:
------------------------------------------
  Total Size        :   439580 B ( 429.3 KB)
  Free Bytes        :   398256 B ( 388.9 KB)
  Allocated Bytes   :    33636 B (  32.8 KB)
  Minimum Free Bytes:   398256 B ( 388.9 KB)
  Largest Free Block:   376820 B ( 368.0 KB)
------------------------------------------
Flash Info:
------------------------------------------
  Chip Size         :  8388608 B (8 MB)
  Block Size        :    65536 B (  64.0 KB)
  Sector Size       :     4096 B (   4.0 KB)
  Page Size         :      256 B (   0.2 KB)
  Bus Speed         : 40 MHz
  Bus Mode          : QIO
------------------------------------------
Partitions Info:
------------------------------------------
                nvs : addr: 0x00009000, size:    20.0 KB, type: DATA, subtype: NVS
            otadata : addr: 0x0000E000, size:     8.0 KB, type: DATA, subtype: OTA
               app0 : addr: 0x00010000, size:  1280.0 KB, type:  APP, subtype: OTA_0
               app1 : addr: 0x00150000, size:  1280.0 KB, type:  APP, subtype: OTA_1
             spiffs : addr: 0x00290000, size:  1388.0 KB, type: DATA, subtype: SPIFFS
         zb_storage : addr: 0x003EB000, size:    16.0 KB, type: DATA, subtype: FAT
             zb_fct : addr: 0x003EF000, size:     4.0 KB, type: DATA, subtype: FAT
           coredump : addr: 0x003F0000, size:    64.0 KB, type: DATA, subtype: COREDUMP
------------------------------------------
Software Info:
------------------------------------------
  Compile Date/Time : Aug  9 2025 09:19:02
  Compile Host OS   : linux
  ESP-IDF Version   : v5.5-1-gb66b5448e0
  Arduino Version   : 3.3.0
------------------------------------------
Board Info:
------------------------------------------
  Arduino Board     : ESP32C6_DEV
  Arduino Variant   : esp32c6
  Arduino FQBN      : esp32:esp32:esp32c6:UploadSpeed=921600,CDCOnBoot=cdc,CPUFreq=160,FlashFreq=80,FlashMode=qio,FlashSize=4M,PartitionScheme=zigbee,DebugLevel=debug,EraseFlash=all,JTAGAdapter=default,ZigbeeMode=ed_debug
============ Before Setup End ============
[   119][I][esp32-hal-periman.c:141] perimanSetPinBus(): Pin 12 already has type USB_DM (38) with bus 0x40812d00
[   120][I][esp32-hal-periman.c:141] perimanSetPinBus(): Pin 13 already has type USB_DP (39) with bus 0x40812d00
Adding ZigbeeLight endpoint to Zigbee Core
[   122][D][ZigbeeCore.cpp:101] addEndpoint(): Endpoint: 10, Device ID: 0x0102
[   122][D][ZigbeeCore.cpp:149] zigbeeInit(): Initialize Zigbee stack
[   192][D][ZigbeeCore.cpp:156] zigbeeInit(): Register all Zigbee EPs in list
[   195][I][ZigbeeCore.cpp:164] zigbeeInit(): List of registered Zigbee EPs:
[   195][I][ZigbeeCore.cpp:166] zigbeeInit(): Device type: Color Dimmable Light Device, Endpoint: 10, Device ID: 0x0102
[   201][I][ZigbeeCore.cpp:260] esp_zb_app_signal_handler(): Zigbee stack initialized
[   202][D][ZigbeeCore.cpp:261] esp_zb_app_signal_handler(): Zigbee channel mask: 0x07fff800
[   205][I][ZigbeeCore.cpp:267] esp_zb_app_signal_handler(): Device started up in  factory-reset mode
[   205][I][ZigbeeCore.cpp:274] esp_zb_app_signal_handler(): Start network steering
Connecting to network
.ESP-ROM:esp32c6-20220919
Build:Sep 19 2022
rst:0x15 (USB_UART_HPSYS),boot:0x2c (SPI_FAST_FLASH_BOOT)
Saved PC:0x40804e96
SPIWP:0xee
mode:DIO, clock div:2
load:0x40875730,len:0x12e0
load:0x4086b910,len:0xda8
load:0x4086e610,len:0x3180
entry 0x4086b910
=========== Before Setup Start ===========
Chip Info:
------------------------------------------
  Model             : ESP32-C6
  Package           : 0
  Revision          : 0.02
  Cores             : 1
  CPU Frequency     : 160 MHz
  XTAL Frequency    : 40 MHz
  Features Bitfield : 0x00000052
  Embedded Flash    : No
  Embedded PSRAM    : No
  2.4GHz WiFi       : Yes
  Classic BT        : No
  BT Low Energy     : Yes
  IEEE 802.15.4     : Yes
------------------------------------------
INTERNAL Memory Info:
------------------------------------------
  Total Size        :   439580 B ( 429.3 KB)
  Free Bytes        :   398256 B ( 388.9 KB)
  Allocated Bytes   :    33636 B (  32.8 KB)
  Minimum Free Bytes:   398256 B ( 388.9 KB)
  Largest Free Block:   376820 B ( 368.0 KB)
------------------------------------------
Flash Info:
------------------------------------------
  Chip Size         :  8388608 B (8 MB)
  Block Size        :    65536 B (  64.0 KB)
  Sector Size       :     4096 B (   4.0 KB)
  Page Size         :      256 B (   0.2 KB)
  Bus Speed         : 40 MHz
  Bus Mode          : QIO
------------------------------------------
Partitions Info:
------------------------------------------
                nvs : addr: 0x00009000, size:    20.0 KB, type: DATA, subtype: NVS
            otadata : addr: 0x0000E000, size:     8.0 KB, type: DATA, subtype: OTA
               app0 : addr: 0x00010000, size:  1280.0 KB, type:  APP, subtype: OTA_0
               app1 : addr: 0x00150000, size:  1280.0 KB, type:  APP, subtype: OTA_1
             spiffs : addr: 0x00290000, size:  1388.0 KB, type: DATA, subtype: SPIFFS
         zb_storage : addr: 0x003EB000, size:    16.0 KB, type: DATA, subtype: FAT
             zb_fct : addr: 0x003EF000, size:     4.0 KB, type: DATA, subtype: FAT
           coredump : addr: 0x003F0000, size:    64.0 KB, type: DATA, subtype: COREDUMP
------------------------------------------
Software Info:
------------------------------------------
  Compile Date/Time : Aug  9 2025 09:19:02
  Compile Host OS   : linux
  ESP-IDF Version   : v5.5-1-gb66b5448e0
  Arduino Version   : 3.3.0
------------------------------------------
Board Info:
------------------------------------------
  Arduino Board     : ESP32C6_DEV
  Arduino Variant   : esp32c6
  Arduino FQBN      : esp32:esp32:esp32c6:UploadSpeed=921600,CDCOnBoot=cdc,CPUFreq=160,FlashFreq=80,FlashMode=qio,FlashSize=4M,PartitionScheme=zigbee,DebugLevel=debug,EraseFlash=all,JTAGAdapter=default,ZigbeeMode=ed_debug
============ Before Setup End ============

Other Steps to Reproduce

I can run the example prefectly fine on my waveshare ESP32-C6-Zero board

I have checked existing issues, online documentation and the Troubleshooting Guide

  • I confirm I have checked existing issues, online documentation and Troubleshooting guide.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions