vision/main/camera_pins.h

24 lines
586 B
C

#pragma once
/*
* Common ESP32-S3-CAM (Freenove / Keyestudio / most Taobao N8R8|N16R8 CAM).
* Works with OV2640, OV3660, and OV5640 — driver auto-detects the sensor.
*/
#define CAM_PIN_PWDN -1
#define CAM_PIN_RESET -1
#define CAM_PIN_XCLK 15
#define CAM_PIN_SIOD 4
#define CAM_PIN_SIOC 5
#define CAM_PIN_D7 16
#define CAM_PIN_D6 17
#define CAM_PIN_D5 18
#define CAM_PIN_D4 12
#define CAM_PIN_D3 10
#define CAM_PIN_D2 8
#define CAM_PIN_D1 9
#define CAM_PIN_D0 11
#define CAM_PIN_VSYNC 6
#define CAM_PIN_HREF 7
#define CAM_PIN_PCLK 13