compatible for Seeed Studio XIAO ESP32S3 Sense with ESP32S3 ? #292
-
I want to use the board Seeed Studio XIAO ESP32S3 Sense . |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can use this code with Seeed Studio XIAO ESP32S3 Sense. disable temprature_sens_read() calls in app_httpd.cpp; disable flashLED() function and all of its calls everywhere through out the project code files. Or adjust it to XIAO ESP32S3 led pins; add this pin map to camera_pins.h: #define Y9_GPIO_NUM 48 define camera model as: use LED_DISABLE and LAMP_DISABLE flags in myconfig.h or review its usage considering XIAO ESP32S3 board; Compile code with "ESP32S3 Dev Module" board selected: That is basically all what I did, the easy way, to compile and flash project files to Seeed Studio XIAO ESP32S3 Sense. |
Beta Was this translation helpful? Give feedback.
You can use this code with Seeed Studio XIAO ESP32S3 Sense.
What you need to do with it is:
disable temprature_sens_read() calls in app_httpd.cpp;
disable flashLED() function and all of its calls everywhere through out the project code files. Or adjust it to XIAO ESP32S3 led pins;
add this pin map to camera_pins.h:
#elif defined(CAMERA_MODEL_XIAO_ESP32S3)
#define PWDN_GPIO_NUM -1
#define RESET_GPIO_NUM -1
#define XCLK_GPIO_NUM 10
#define SIOD_GPIO_NUM 40
#define SIOC_GPIO_NUM 39
#define Y9_GPIO_NUM 48
#define Y8_GPIO_NUM 11
#define Y7_GPIO_NUM 12
#define Y6_GPIO_NUM 14
#define Y5_GPIO_NUM 16
#define Y4_GPIO_NUM 18
#define Y3_GPIO_NUM 17
#define Y2_GPIO_NUM 15
#define VSYNC_GPIO_NUM 38
#de…