Skip to content

Commit 1530d9c

Browse files
authored
Merge pull request #744 from PauloPrates-20/master
GOOUU TECH ESP32S3 board pin mapping
2 parents 4d418f1 + 0a919b1 commit 1530d9c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

examples/camera_example/main/take_picture.c

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
// #define BOARD_WROVER_KIT
99
// #define BOARD_ESP32CAM_AITHINKER
1010
// #define BOARD_ESP32S3_WROOM
11+
// #define BOARD_ESP32S3_GOOUUU
1112

1213
/**
1314
* 2. Kconfig setup
@@ -112,6 +113,25 @@
112113
#define CAM_PIN_D6 17
113114
#define CAM_PIN_D7 16
114115
#endif
116+
// ESP32S3 (GOOUU TECH)
117+
#ifdef BOARD_ESP32S3_GOOUUU
118+
#define CAM_PIN_PWDN -1
119+
#define CAM_PIN_RESET -1 //software reset will be performed
120+
#define CAM_PIN_VSYNC 6
121+
#define CAM_PIN_HREF 7
122+
#define CAM_PIN_PCLK 13
123+
#define CAM_PIN_XCLK 15
124+
#define CAM_PIN_SIOD 4
125+
#define CAM_PIN_SIOC 5
126+
#define CAM_PIN_D0 11
127+
#define CAM_PIN_D1 9
128+
#define CAM_PIN_D2 8
129+
#define CAM_PIN_D3 10
130+
#define CAM_PIN_D4 12
131+
#define CAM_PIN_D5 18
132+
#define CAM_PIN_D6 17
133+
#define CAM_PIN_D7 16
134+
#endif
115135
static const char *TAG = "example:take_picture";
116136

117137
#if ESP_CAMERA_SUPPORTED

0 commit comments

Comments
 (0)