ESP32-S3-ETH PoE LAN Modul mit OV2640/OV5640 Kamera

Hallo zusammen,
hat von Euch schon jemand mit dem WaveShare ESP32-S3-ETH Board unter ESPHome / Home Assistant gearbeitet?
Ich habe das PoE LAN zum laufen gebracht.
Allerdings die Kamera will nicht. Ich habe sowohl eine OV2640 als auch eine OV5640 versucht. Bei beiden der gleiche Fehler.

Hier mein Code:

esphome:
  name: doorbell
  friendly_name: doorbell

esp32:
  board: esp32-s3-devkitc-1
  framework:
    type: arduino

# Enable logging
logger:

# Enable Home Assistant API
api:
  encryption:
    key: xxx
ota:
  - platform: esphome
    password: xxx

ethernet:
  type: W5500
  mosi_pin: GPIO11
  miso_pin: GPIO12
  clk_pin: GPIO13
  cs_pin: GPIO14
  reset_pin: GPIO9
  interrupt_pin: GPIO10
  clock_speed: 25MHz

esp32_camera:
  name: camera
  external_clock:
    pin: GPIO3
    frequency: 20MHz
  i2c_pins:
    sda: GPIO48
    scl: GPIO47
  data_pins: [GPIO41, GPIO45, GPIO46, GPIO42, GPIO40, GPIO38, GPIO15 , GPIO18]
  vsync_pin: GPIO1
  href_pin: GPIO2
  pixel_clock_pin: GPIO39
#  resolution: 800x600

Und hier der Fehler:

[10:21:52][C][logger:185]: Logger:
[10:21:52][C][logger:186]:   Level: DEBUG
[10:21:52][C][logger:188]:   Log Baud Rate: 115200
[10:21:52][C][logger:189]:   Hardware UART: USB_CDC
[10:21:52][C][esp32_camera:048]: ESP32 Camera:
[10:21:52][C][esp32_camera:049]:   Name: camera
[10:21:52][C][esp32_camera:050]:   Internal: NO
[10:21:52][C][esp32_camera:052]:   Data Pins: D0:41 D1:45 D2:46 D3:42 D4:40 D5:38 D6:15 D7:18
[10:21:52][C][esp32_camera:053]:   VSYNC Pin: 1
[10:21:52][C][esp32_camera:054]:   HREF Pin: 2
[10:21:52][C][esp32_camera:055]:   Pixel Clock Pin: 39
[10:21:52][C][esp32_camera:056]:   External Clock: Pin:3 Frequency:20000000
[10:21:52][C][esp32_camera:060]:   I2C Pins: SDA:48 SCL:47
[10:21:52][C][esp32_camera:062]:   Reset Pin: -1
[10:21:52][C][esp32_camera:080]:   Resolution: 800x600 (VGA)
[10:21:52][E][esp32_camera:123]:   Setup Failed: ESP_ERR_NOT_FOUND
[10:21:52][E][component:082]:   Component esp32_camera is marked FAILED

Hat jemand eine Idee?

Hallo an die ESPHome/ HA …ESP32 Enthusiasten,

nach einige Zeit der Quälerei ist es gelungen, ein ESP32-Eth Board zu finden und mittels ESPHome zu ‘betanken’ um ein billiges, einfaches Cam-Board für diverse Anwendungen & ggf. weitere Entwicklungen testen zu können :slight_smile: welches wie folgt diese Komponenten auf sich vereint:

  • ESP32-S3-WROOM-1 (N16R8) with 16MB Flash, 8MB ram.

  • USB-C connector.

  • Female headers soldered

  • 36 Gpios(17 are not used by Ethernet or the camera).

  • W5500 chip for the Ethernet.

Details: ESP32Board → Esp32-Stick-PoE-A-Cam

Hersteller : prokyber s.r.o (CZ) mit der HW Rev. 5.0.0 vom 03.04.2024

WEB: “www.prokyber.cz”

Shop-Link: “www.tindie.com/products/allexok/esp32-stick-poe-a-camn16r8/”

–> Preis: ca. 23,0 Euro

Snapshot Bsp. mit einem OV2640 Sensor ( 160° Weitwinkel / :frowning: im Halbdunkel ) :slight_smile:

ESPHome: aktuelles yaml File :

siehe …:

#############################################################################

esphome:
name: “ml-esp32-cam02”
friendly_name: ESP32 PoE Camera W5500

esp32:
board: esp32-s3-devkitc-1
framework:
type: esp-idf # ESP-IDF wird für eine stabile S3-Kammerunterstützung empfohlen

#esp32:

# board: adafruit_feather_esp32s3_nopsram

# variant: esp32s3

# W5500 Ethernet Konfiguration

ethernet:
type: W5500
mosi_pin: GPIO1
miso_pin: GPIO14
clk_pin: GPIO21
cs_pin: GPIO39
interrupt_pin: GPIO38
clock_speed: 25MHz

# Enable logging

logger:

# level: VERY_VERBOSE

hardware_uart: UART0

psram:
mode: octal
speed: 80MHz

# Enable Home Assistant API

api:

# encryption:

# key: “generate key here https://esphome.io/components/api”

#external_components:
#- source:

# type: git

# url: https://github.com/MichaKersloot/esphome_custom_components

# components: \[ esp32_camera \]

esp32_camera:
name: My Camera
external_clock:
pin: GPIO15
frequency: 20MHz
i2c_pins:
sda: GPIO4
scl: GPIO5
data_pins: \[GPIO11, GPIO9, GPIO8, GPIO10, GPIO12, GPIO18, GPIO17, GPIO16\]
vsync_pin: GPIO6
href_pin: GPIO7
pixel_clock_pin: GPIO13
#resolution: 1024x768
resolution: 1600x1200
jpeg_quality: 15
´´´
###########################################################################