Download Arduino IDE and continue with the setup.


https://espressif.github.io/arduino-esp32/package_esp32_index.json// Near the top of CameraWebServer.ino. Uncomment YOUR board and make sure
// every other CAMERA_MODEL_* line stays commented - two defined at once gives
// "Camera probe failed with error 0x105" at boot.
#define CAMERA_MODEL_AI_THINKER // Has PSRAM
// #define CAMERA_MODEL_WROVER_KIT
// #define CAMERA_MODEL_ESP_EYE
// #define CAMERA_MODEL_M5STACK_PSRAM// A little further down, fill in your 2.4 GHz network. The ESP32 does not
// join 5 GHz networks - if it never connects, this is usually why.
const char *ssid = "YOUR_WIFI_NAME";
const char *password = "YOUR_WIFI_PASSWORD";