Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update esp32_camera.rst - added ESP32-S3-WROOM-1 #4532

Open
wants to merge 1 commit into
base: current
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions components/esp32_camera.rst
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,39 @@ Configuration examples
name: My Camera
# ...

**ESP32-S3-WROOM-1** with Octal PSRAM enabled:

.. code-block:: yaml

# Example configuration entry
esphome:
min_version: 2024.12.0 # may work with earlier versions
# many of the S3-WROOM-1 cards have Quad SPI for flash and Octal SPI for PSRAM
# the following informs the Arduino Framework to use that configuration
platformio_options:
board_build.arduino.memory_type: qio_opi

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

esp32_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

# Image settings
name: My Camera
# ...

**Seeed Studio XIAO ESP32S3 Sense**:

.. code-block:: yaml
Expand Down
Loading