File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
examples/camera_example/main Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 8
8
// #define BOARD_WROVER_KIT
9
9
// #define BOARD_ESP32CAM_AITHINKER
10
10
// #define BOARD_ESP32S3_WROOM
11
+ // #define BOARD_ESP32S3_GOOUUU
11
12
12
13
/**
13
14
* 2. Kconfig setup
112
113
#define CAM_PIN_D6 17
113
114
#define CAM_PIN_D7 16
114
115
#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
115
135
static const char * TAG = "example:take_picture" ;
116
136
117
137
#if ESP_CAMERA_SUPPORTED
You can’t perform that action at this time.
0 commit comments