IreuN
IreuN
Thank You! This helped me!
Sure! I'm using Kali Linux, 2024.4, on a x86 machine, I've run `apt dist-upgrade` so I guess everything should be up-to-date.
Same here! ``` Compiling .pioenvs/esp32-c6/src/esphome/components/esp32_ble/ble_advertising.cpp.o In file included from src/esphome/components/esp32_ble/ble.cpp:6: src/esphome/components/esp32_ble/const_esp32c6.h:69:1: error: 'const esp_bt_controller_config_t' has no non-static data member named 'enable_uart_hci' 69 | }; | ^ *** [.pioenvs/esp32-c6/src/esphome/components/esp32_ble/ble.cpp.o] Error 1...
What worked for me is this: ```yaml esphome: name: esp32-c6 friendly_name: xxx platformio_options: build_flags: "-DI2C_NUM_1=I2C_NUM_0" esp32: board: esp32-c6-devkitc-1 variant: esp32c6 framework: type: esp-idf version: "5.3.1" platform_version: 6.9.0 ```
fixed for me, esphome 2025.2.0 - current config is this: ```yaml esphome: name: "esphome-esp32c6-sypialnia" friendly_name: Sypialnia external_components: - source: github://pr#8283 components: [ i2c ] esp32: board: esp32-c6-devkitc-1 variant: esp32c6 framework:...
You were right! Thanks for the tip! Current config as fallows: ```yaml esphome: name: "esphome-esp32c6-sypialnia" friendly_name: Sypialnia external_components: - source: github://pr#8283 components: [ i2c ] esp32: board: esp32-c6-devkitc-1 flash_size: 16MB...
I've just updated ESPHome to 2025.6.0, and my C6 stopped booting
```yaml esphome: name: "esphome-esp32c6-sypialnia" friendly_name: Sypialnia esp32: board: esp32-c6-devkitc-1 flash_size: 16MB framework: type: esp-idf i2c: scl: 6 sda: 5 # scan: false # Enable logging logger: # Enable Home Assistant...
Yes, it compiles successfully. It should have 16MB, I bought it a year ago on aliexpress under name `ESP32-C6-WROOM-1-N16`. I will try without these modules, will post a new comment...
Huh, seems that it boots without BME / I2C library.. I will try compiling BLE + I2C (without BME280) and see it it bootloops again EDIT: Yup, enabling I2C results...