Hello, maybe someone can help me out, I'm starting to tinker with ESPHome, and I was trying to flash my first very basic configuration to this specific board I had on hands.
I just wanted to test if i could ghet it to connect to WiFi and have it enrolled into home assistant for further configuring the board I/O and functionality later on.
I simply followed the add device wizard, selected the C6 model, punched in my wifi SSID and password and tried to flash the board through the browser serial interface.
The device appearently flashed successfully, but i can't get it to boot.
By checking the logs i see something like this (and nothing else)
[23:38:38]ESP-ROM:esp32c6-20220919
[23:38:38]Build:Sep 19 2022
[23:38:38]rst:0x1 (POWERON),boot:0xc (SPI_FAST_FLASH_BOOT)
[23:38:38]SPIWP:0xee
[23:38:38]mode:DIO, clock div:2
[23:38:38]load:0x40875720,len:0x18ec
[23:38:38]load:0x4086c110,len:0xd9c
[23:38:38]load:0x4086e610,len:0x2f80
[23:38:38]entry 0x4086c110
The configuration file is the following (very basic)
esphome:
name: led-test
friendly_name: Led Test
esp32:
board: esp32-c6-devkitc-1
variant: ESP32C6
flash_size: 8MB
framework:
type: esp-idf
# Enable logging
logger:
# Enable Home Assistant API
api:
encryption:
key: "<redacted>"
ota:
- platform: esphome
password: "<redacted>"
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Led-Test Fallback Hotspot"
password: "<redacted>"
captive_portal:
I don't understand what I might be doing wrong, i don't think the hardware is faulty, any suggestion? any test i can perform for further digging into the problem? the only thing i'm not sure about is the flash size
Everything else was filled in automatically by ESPHome builder.
Thanks very much for your kind support.