I just bought 2 of these GOOUUU ESP32-S3-CAM on Amazon (https://www.amazon.com/gp/product/B0DGLL82VQ?ref=ppx_pt2_dt_b_prod_image&th=1). I'm trying to flash it with ESPHome but I keep getting the error
[02:11:20][E][esp32_camera:123]: Setup Failed: ESP_ERR_NOT_FOUND
[02:11:20][E][component:082]: Component esp32_camera is marked FAILED
I'm completely new to using ESPs so I'm honestly relying on ChatGPT for the config which is obviously not going well. This was my last attempt:
esphome:
name: esp32_s3_cam
platform: ESP32
board: esp32-s3-devkitc-1 # Matches the ESP32-S3 board
wifi:
ssid: [REDACTED]
password: [REDACTED]
logger:
api:
encryption:
key: [REDACTED]
ota:
platform: esphome
esp32_camera:
name: ESP32-S3-CAM
external_clock:
pin: GPIO0 # CAM_XCLK
frequency: 20MHz
data_pins: # Camera data pins
- GPIO46 # CAM_Y2
- GPIO3 # CAM_Y3
- GPIO48 # CAM_Y4
- GPIO16 # CAM_Y5
- GPIO15 # CAM_Y6
- GPIO4 # CAM_Y7
- GPIO5 # CAM_Y8
- GPIO6 # CAM_Y9
vsync_pin: GPIO8 # CAM_VSYNC
href_pin: GPIO7 # CAM_HREF
pixel_clock_pin: GPIO18 # CAM_PCLK
i2c_pins:
sda: GPIO10 # CAM_SIOD
scl: GPIO11 # CAM_SIOC
resolution: 320x240 # Use lower resolution for testing
max_framerate: 15 fps
Does anyone have any experience getting these working in Home Assistant?