Seeed Studio XIAO ESP32C6

Has anyone tested this esp32 c6?
Matter/Thread/zigbee… Sounds interesting :thinking:

1 Like

maybe this might be helpful:

I have had success with the XAIO ESP32C6 and ESPHome. It is still not natively supported, but I was able to find a config that works well. Hoping to build a custom component for a Zigbee proxy. Here is my ESPHome Config

esphome:
  name: esp32c6_proxy
  friendly_name: ESP32C6 Proxy
  platformio_options:   
   platform: https://github.com/platformio/platform-espressif32.git#v6.7.0

esp32:
 board: esp32-c6-devkitm-1
 variant: esp32c6
 framework:
   type: esp-idf
   version: 5.2.1
   platform_version: 6.7.0
   sdkconfig_options:
     CONFIG_ESPTOOLPY_FLASHSIZE_4MB: y


# Enable logging
logger:

# Enable Home Assistant API
api:
  encryption:
    key: "your_key_here"

ota:
  - platform: esphome
    password: "your_pass_here"

wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password

  # Enable fallback hotspot (captive portal) in case wifi connection fails
  ap:
    ssid: "Esp32C6-Proxy Fallback Hotspot"
    password: "your_pass_here"

captive_portal:
    
bluetooth_proxy:
  active: True 

Here is the latest from the ESPHome Feature Requests - Bluetooth proxy support for ESP32-C6 · Issue #2599 · esphome/feature-requests · GitHub

A working Bluetooth Proxy setup - ESPHome BLE proxy on ESP32-C6 board · GitHub

For anyone interested in order to get debug output (via esphome) this needs to be added:

logger:
  hardware_uart: USB_SERIAL_JTAG

to configuration yaml.