Hallo zusammen,
meine ESP32-Cam, die zuvor ganz ok funktionierte, liefert nun kein Bild mehr. Auf der Dashboard Karte steht unten rechts in der Ecke “untätig”.
Ich kann sie erreichen und z.B. die LED ein- und ausschalten. Auch die Firmware konnte ich updaten. Aber ich bekommen kein Bild mehr.

Wie bekomme ich sie wieder aktiv?
Im Log gibt es eine Fehlermeldung:
[20:35:54][E][esp32_camera:123]: Setup Failed: ESP_ERR_NOT_FOUND
Hoer das komplette Log:
[20:35:54][I][app:102]: ESPHome version 2024.2.1 compiled on Feb 29 2024, 11:37:53
[20:35:54][C][wifi:577]: WiFi:
[20:35:54][C][wifi:409]: Local MAC: [removed by user]
[20:35:54][C][wifi:414]: SSID: [redacted]
[20:35:54][C][wifi:415]: IP Address: [removed by user]
[20:35:54][C][wifi:417]: BSSID: [redacted]
[20:35:54][C][wifi:418]: Hostname: 'esp-cam01'
[20:35:54][C][wifi:420]: Signal strength: -42 dB ▂▄▆█
[20:35:54][C][wifi:424]: Channel: 11
[20:35:54][C][wifi:425]: Subnet: [removed by user]
[20:35:54][C][wifi:426]: Gateway: [removed by user]
[20:35:54][C][wifi:427]: DNS1: [removed by user]
[20:35:54][C][wifi:428]: DNS2: 0.0.0.0
[20:35:54][C][logger:447]: Logger:
[20:35:54][C][logger:448]: Level: DEBUG
[20:35:54][C][logger:449]: Log Baud Rate: 115200
[20:35:54][C][logger:451]: Hardware UART: UART0
[20:35:54][C][gpio.output:010]: GPIO Binary Output:
[20:35:54][C][gpio.output:011]: Pin: GPIO4
[20:35:54][C][light:103]: Light 'flashlight'
[20:35:54][C][esp32_camera:048]: ESP32 Camera:
[20:35:54][C][esp32_camera:049]: Name: My ESP32-CAM
[20:35:54][C][esp32_camera:050]: Internal: NO
[20:35:54][C][esp32_camera:052]: Data Pins: D0:5 D1:18 D2:19 D3:21 D4:36 D5:39 D6:34 D7:35
[20:35:54][C][esp32_camera:053]: VSYNC Pin: 25
[20:35:54][C][esp32_camera:054]: HREF Pin: 23
[20:35:54][C][esp32_camera:055]: Pixel Clock Pin: 22
[20:35:54][C][esp32_camera:056]: External Clock: Pin:0 Frequency:20000000
[20:35:54][C][esp32_camera:060]: I2C Pins: SDA:26 SCL:27
[20:35:54][C][esp32_camera:062]: Reset Pin: -1
[20:35:54][C][esp32_camera:080]: Resolution: 640x480 (VGA)
[20:35:54][E][esp32_camera:123]: Setup Failed: ESP_ERR_NOT_FOUND
[20:35:54][C][psram:020]: PSRAM:
[20:35:54][C][psram:021]: Available: YES
[20:35:54][C][psram:024]: Size: 4095 KB
[20:35:54][C][captive_portal:088]: Captive Portal:
[20:35:54][C][mdns:115]: mDNS:
[20:35:54][C][mdns:116]: Hostname: esp-cam01
[20:35:54][C][ota:096]: Over-The-Air Updates:
[20:35:54][C][ota:097]: Address: esp-cam01.local:3232
[20:35:54][C][ota:100]: Using Password.
[20:35:54][C][ota:103]: OTA version: 2.
[20:35:54][C][api:139]: API Server:
[20:35:54][C][api:140]: Address: esp-cam01.local:6053
[20:35:54][C][api:142]: Using noise encryption: YES
Hier das YAML
esphome:
name: esp-cam01
friendly_name: ESP-CAM01
esp32:
board: esp32dev
framework:
type: arduino
# Enable logging
logger:
# Enable Home Assistant API
api:
encryption:
key: "hnB+EXUfa5K9cQAya/Fa1SRLPd4RhwNe6a1CBDphxfM="
ota:
password: "780f6d8336b8f9c72a0eed1332473a4b"
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Esp-Cam01 Fallback Hotspot"
password: "bEJZTrFKyeko"
captive_portal:
# Example configuration entry
esp32_camera:
external_clock:
pin: GPIO0
frequency: 20MHz
i2c_pins:
sda: GPIO26
scl: GPIO27
data_pins: [GPIO5, GPIO18, GPIO19, GPIO21, GPIO36, GPIO39, GPIO34, GPIO35]
vsync_pin: GPIO25
href_pin: GPIO23
pixel_clock_pin: GPIO22
power_down_pin: GPIO32
# Image settings
name: My ESP32-CAM
# Flashlight
output:
- platform: gpio
pin: GPIO4
id: gpio_4
## GPIO_4 is the flash light pin
light:
- platform: binary
output: gpio_4
name: flashlight