ESP32cam V3 OV2640 , ESP32cam v1.2 OV5640
#include <WiFi.h> #include <WebServer.h> #include "esp_camera.h" #include "soc/rtc.h" #include <esp_mac.h> const char * WiFi_HostName = "ESP32cam121" ; const char * WiFi_SSID = "internet" ; const char * WiFi_Password = "internet" ; const char * www_Login = "root" ; const char * www_Password = "root" ; WebServer server ( 80 ) ; // PIN ESP32cam v1.2 -> OV5640 #define CAM_PWDN - 1 #define CAM_RESET 5 #define CAM_XCLK 15 #define CAM_SIOD 22 #define CAM_SIOC 23 #define CAM_D0 2 #define CAM_D1 14 #define CAM_D2 35 #define CAM_D3 12 #define CAM_D4 27 #define CAM_D5 33 #define CAM_D6 34 #define CAM_D7 39 #define CAM_VSYNC 18 #define CAM_HREF 36 #define CAM_PCLK 26 #define ...