I get error on Serial Monitor Arduino IDE like this:
E (10297) camera: Camera probe failed with error 0x105(ESP_ERR_NOT_FOUND)
........WiFi connected
192.168.100.145
Stream Link: http://192.168.100.145/mjpeg/1
(Cam not found if I open the url, bcs I get an error camera probe)
I use the type of esp32cam like the image below. I use esp32cam in module esp32s, not the module with text AI thinker.
And I still upload code #define camera model ai thinker.
And the camera_pins.h, I still using this one:
[Codebox]
#elif defined(CAMERA_MODEL_AI_THINKER)
#define PWDN_GPIO_NUM 32
#define RESET_GPIO_NUM -1
#define XCLK_GPIO_NUM 0
#define SIOD_GPIO_NUM 26
#define SIOC_GPIO_NUM 27
#define Y9_GPIO_NUM 35
#define Y8_GPIO_NUM 34
#define Y7_GPIO_NUM 39
#define Y6_GPIO_NUM 36
#define Y5_GPIO_NUM 21
#define Y4_GPIO_NUM 19
#define Y3_GPIO_NUM 18
#define Y2_GPIO_NUM 5
#define VSYNC_GPIO_NUM 25
#define HREF_GPIO_NUM 23
#define PCLK_GPIO_NUM 22
[/Codebox]
The pins, I have implementation that in this code
[Codebox]
camera_config_t config;
config.ledc_channel = LEDC_CHANNEL_0;
config.ledc_timer = LEDC_TIMER_0;
config.pin_d0 = Y2_GPIO_NUM;
config.pin_d1 = Y3_GPIO_NUM;
config.pin_d2 = Y4_GPIO_NUM;
config.pin_d3 = Y5_GPIO_NUM;
config.pin_d4 = Y6_GPIO_NUM;
config.pin_d5 = Y7_GPIO_NUM;
config.pin_d6 = Y8_GPIO_NUM;
config.pin_d7 = Y9_GPIO_NUM;
config.pin_xclk = XCLK_GPIO_NUM;
config.pin_pclk = PCLK_GPIO_NUM;
config.pin_vsync = VSYNC_GPIO_NUM;
config.pin_href = HREF_GPIO_NUM;
config.pin_sscb_sda = SIOD_GPIO_NUM;
config.pin_sscb_scl = SIOC_GPIO_NUM;
config.pin_pwdn = PWDN_GPIO_NUM;
config.pin_reset = RESET_GPIO_NUM;
config.xclk_freq_hz = 20000000;
config.pixel_format = PIXFORMAT_JPEG;
// Frame parameters
// config.frame_size = FRAMESIZE_UXGA;
config.frame_size = FRAMESIZE_QVGA;
config.jpeg_quality = 12;
config.fb_count = 2;
#if defined(CAMERA_MODEL_ESP_EYE)
pinMode(13, INPUT_PULLUP);
pinMode(14, INPUT_PULLUP);
#endif
cam.init(config);
IPAddress ip;
WiFi.mode(WIFI_STA);
WiFi.begin(SSID1, PWD1);
while (WiFi.status() != WL_CONNECTED)
{
delay(500);
Serial.print(F("."));
}
ip = WiFi.localIP();
Serial.println(F("WiFi connected"));
Serial.println("");
Serial.println(ip);
Serial.print("Stream Link: http://");
Serial.print(ip);
Serial.println("/mjpeg/1");
server.on("/mjpeg/1", HTTP_GET, handle_jpg_stream);
server.on("/jpg", HTTP_GET, handle_jpg);
server.onNotFound(handleNotFound);
server.begin();
}
void loop()
{
server.handleClient();
}
[/Codebox]
Board: I try with AI THINKER ESP32CAM, and ESP32 WROVER KIT (has same result)
How should I do to fix my problem?
ESP32Cam Error Probe Camera
-
- Posts: 1
- Joined: Fri Jul 12, 2024 11:34 am
ESP32Cam Error Probe Camera
- Attachments
-
- Not this type
- 383fcec8f6.jpg.500x500.jpg (166.22 KiB) Viewed 1421 times
-
- I use this type of esp32cam
- 61n54twcpWL._AC_UF350,350_QL80_.jpg (20.67 KiB) Viewed 1421 times
-
- Posts: 177
- Joined: Sun Jun 23, 2024 6:18 pm
Re: ESP32Cam Error Probe Camera
You can check these answers about this same error: https://github.com/espressif/esp32-camera/issues/450
Who is online
Users browsing this forum: Baidu [Spider], Google [Bot] and 106 guests