ESP32-C6-EVB

ESP32-C6-EVB-SCH

esp32-c6-evb-sch-icbbuy-com.pdf

ESP32-C6-EVB-SOFTWARE

Test program and Tasmota firmware

esp32-c6-software.zip

ESP32-C6-EVB-Config_tasmota

config_tasmota.zip

Matthias, 2024/08/08 14:55

Hallo, wie muss das Tasmota Tamplate lauten?

gruß

admin, 2024/08/10 06:39

config_tasmota.zip is update

admin, 2024/08/10 06:41

config_tasmota.zip

admin, 2024/12/27 02:29

It is in the compressed package. It has been updated and you can just download it.

ESP32-C6-EVB, 2024/08/24 09:58

can i configured this item with esphome ???

admin, 2024/10/20 02:22

At present, ESPhome officially does not fully support esp32-C6. You can use ESP32 to implement functions.

Junio, 2024/11/22 09:49

Hello, how can I use it on ESP32 to implement new functions?

Do you have a datasheet?

admin, 2024/12/27 02:32, 2024/12/27 02:34

esphome:

name: living-room-multi-sensor
friendly_name: Living Room Multi Sensor

esp32:

board: esp32-c6-devkitc-1
variant: esp32c6
flash_size: 4MB
framework:
  type: esp-idf
  version: 5.1.2
  platform_version: 6.5.0
  sdkconfig_options:
    CONFIG_ESPTOOLPY_FLASHSIZE_4MB: y

# Enable Home Assistant API api:

wifi:

use_address: 192.168.2.9
ssid: !secret wifi_ssid
password: !secret wifi_password
reboot_timeout: 
  minutes: 10

logger:

esp32_ble_tracker:

bluetooth_proxy:

active: true

i2c:

sda: 6
scl: 7
frequency: 15kHz

binary_sensor:

  1. platform: gpio

pin: GPIO4

  name: "Presence"
  id: pir_sensor

sensor:

  1. platform: wifi_signal

name: “Wi-Fi Signal”

  update_interval: 60s
  1. platform: ags10

address: 0x1A

  tvoc:
    name: "AGS10 TVOC"
  1. platform: bh1750

address: 0x23

  name: "BH1750 Illuminance"
  update_interval: 60s
  1. platform: bmp280

address: 0x77

  pressure:
    id: bmp280_pressure
    name: "BME680 Pressure"
  update_interval: 60s
  1. platform: scd4x

address: 0x62

  id: scd41
  co2:
    name: "SCD41 CO2"
  temperature:
    id: scd41_temperature
    name: "SCD41 Temperature"
  humidity:
    id: scd41_humidity
    name: "SCD41 Humidity"
  ambient_pressure_compensation_source: bmp280_pressure
  update_interval: 60s
  1. platform: absolute_humidity

name: SCD41 Absolute Humidity

  temperature: scd41_temperature
  humidity: scd41_humidity
  1. platform: aht10

address: 0x38

  variant: AHT20
  temperature:
    id: aht20_temperature
    name: "AHT20 Temperature"
  humidity:
    id: aht20_humidity
    name: "AHT20 Humidity"
  update_interval: 60s
  1. platform: absolute_humidity

name: AHT20 Absolute Humidity

  temperature: aht20_temperature
  humidity: aht20_humidity
Hilvert , 2024/12/16 20:48

i use QSZNTEC Board with ESP32-C6-P (4 x Input/ 4 x Relays)

i can switch the relais with MQTT but Can not read the inputs. i don't want the relais to switch when i put power on the inputs. is this possible?

Jens , 2025/03/09 17:29

is an Zigbee Example available?

Karsten , 2025/03/30 14:50

Guten Tag, Beim einschalten der Spannung muss der esp erste restet werden. Gibt es eine Möglichkeit das der esp 32 bei spannungszufuhr sofort richtig bootet ohne das die restet Taste betätigt werden muss?

Mattias Fornander, 2025/04/20 09:07
esphome:
  min_version: "2025.4"
  name: esp32-c6-evb
  friendly_name: ESP32 C6 EVB
  project:
    name: mfornander.esp32c6evb
    version: "1.0"
esp32:
  board: esp32-c6-devkitc-1
  variant: esp32c6
  flash_size: 4MB
  framework:
    type: esp-idf
    version: 5.3.1
    platform_version: 6.9.0
    sdkconfig_options:
      CONFIG_ESPTOOLPY_FLASHSIZE_4MB: y
      CONFIG_BT_BLE_50_FEATURES_SUPPORTED: y
      CONFIG_BT_BLE_42_FEATURES_SUPPORTED: y
      CONFIG_OPENTHREAD_ENABLED: n
      CONFIG_ENABLE_WIFI_STATION: y
      CONFIG_USE_MINIMAL_MDNS: y
# Enable logging
logger:
# Enable Home Assistant API
api:
  password: ""
ota:
  - platform: esphome
    password: ""
wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password
  # Enable fallback hotspot (captive portal) in case wifi connection fails
  ap:
    ssid: "ESP32-C6-EVB Fallback Hotspot"
    password: "12345678"
captive_portal:
# https://wiki.icbbuy.com/doku.php?id=developmentboard:esp32-c6-evb
esp32_ble_tracker:
  id: ble_tracker
  max_connections: 5
  scan_parameters:
    interval: 1100ms
    window: 1100ms
    active: true
    continuous: false
bluetooth_proxy:
  active: true
  connection_slots: 5
sensor:
  - platform: wifi_signal
    name: Wi-Fi Signal
    update_interval: 60s
# i2c:
#   sda: 6
#   scl: 7
#   frequency: 15kHz
light:
  - platform: status_led
    name: Status LED
    id: led
    pin:
      number: 8
      inverted: true
      ignore_strapping_warning: true
      mode: output
binary_sensor:
  - platform: gpio
    name: BOOT Button
    id: boot
    pin:
      number: 9
      inverted: true
      ignore_strapping_warning: true
      mode:
        input: true
        pullup: true
  - platform: gpio
    name: Input 1
    id: in1
    pin:
      number: 1
      inverted: true
      mode:
        input: true
        pullup: true
  - platform: gpio
    name: Input 2
    id: in2
    pin:
      number: 2
      inverted: true
      mode:
        input: true
        pullup: true
  - platform: gpio
    name: Input 3
    id: in3
    pin:
      number: 3
      inverted: true
      mode:
        input: true
        pullup: true
  - platform: gpio
    name: Input 4
    id: in4
    pin:
      number: 4
      inverted: true
      mode:
        input: true
        pullup: true
switch:
  - platform: restart
    name: Restart
  - platform: gpio
    name: Relay 1
    id: out1
    pin: 10
  - platform: gpio
    name: Relay 2
    id: out2
    pin: 11
  - platform: gpio
    name: Relay 3
    id: out3
    pin: 22
  - platform: gpio
    name: Relay 4
    id: out4
    pin: 23
请输入您的评论. 可以使用维基语法:
 
  • developmentboard/esp32-c6-evb.txt
  • 最后更改: 2024/08/10 06:39
  • admin