Search found 15 matches

by FBMinis
Fri Feb 02, 2024 3:05 pm
Forum: Hardware
Topic: Need help with ov5640 exposure timing
Replies: 1
Views: 962

Re: Need help with ov5640 exposure timing

Did you develop your application any further? I'm trying to understand how to control exposure time in order to use the OV2640 in dark conditions
by FBMinis
Tue Jan 23, 2024 9:40 pm
Forum: ESP32 Arduino
Topic: ESP32-CAM ov2640 exposure control/FREX mode
Replies: 34
Views: 73411

Re: ESP32-CAM ov2640 exposure control/FREX mode

Came across the following project some time ago, it allows taking photos in very dark conditions

https://github.com/paoloinverse/CameraW ... troEdition
by FBMinis
Tue Oct 31, 2023 8:15 pm
Forum: ESP32 Arduino
Topic: Camera always fails to capture fb (tested with different lenses, power supplies, sketches)
Replies: 1
Views: 5728

Camera always fails to capture fb (tested with different lenses, power supplies, sketches)

This AI-Thinker ESP32-CAM was kept in its sealed bag until yesterday, when I decided to start a new project. I was working on something with a different board, so I used the same test setup and sketch to power it ON for the first time. Its fails in every sketch when esp_camera_fb_get()() is called. ...
by FBMinis
Wed Oct 25, 2023 6:49 pm
Forum: ESP32 Arduino
Topic: I'm using and ESP-32CAM and a reed switch triggers an interrupt on GPIO2 but not on GPIO4, any idea why?
Replies: 3
Views: 2190

Re: I'm using and ESP-32CAM and a reed switch triggers an interrupt on GPIO2 but not on GPIO4, any idea why?

Thank you. It seems that removing R13 also disables the LED circuit, allowing to use GPIO4 as long as SDCards is not being used.
by FBMinis
Wed Oct 25, 2023 10:37 am
Forum: ESP32 Arduino
Topic: I'm using and ESP-32CAM and a reed switch triggers an interrupt on GPIO2 but not on GPIO4, any idea why?
Replies: 3
Views: 2190

Re: I'm using and ESP-32CAM and a reed switch triggers an interrupt on GPIO2 but not on GPIO4, any idea why?

I have learned that GPIO4 is connected to the onboard "flash" LED of the AI Thinker ESP32CAM.

I was able to setup interrupts on GPIO16 and GPIO02 that behave correctly.

Is there a way to setup and interrupt on GPIO04 if I dont plan on using he sdcard nor the flash led?
by FBMinis
Tue Oct 24, 2023 5:06 pm
Forum: ESP32 Arduino
Topic: I'm using and ESP-32CAM and a reed switch triggers an interrupt on GPIO2 but not on GPIO4, any idea why?
Replies: 3
Views: 2190

I'm using and ESP-32CAM and a reed switch triggers an interrupt on GPIO2 but not on GPIO4, any idea why?

I'm programming this AI-Thinker ESP-32CAM in the Arduino IDE. Im not using any of the camera functions right now. The code below is what I have running. Passing a magnet by the reed switch increases the counter. Trying the same code on pin 4 (GPIO4) doesnt produce any result. static void IRAM_ATTR r...
by FBMinis
Wed Jun 14, 2023 4:32 pm
Forum: Report Bugs
Topic: MD5 of file doas not match data in flash ( fatal error )
Replies: 13
Views: 216410

Re: MD5 of file doas not match data in flash ( fatal error )

This tutorial saved my ESP32Cam, which was showing the same MD5 error mention in this thread:

https://www.youtube.com/watch?v=lthKBGacyVs

Win+R
cmd.exe
python -m esptool --port COM8 write_flash_status --non-volatile 0

(replace 8 with the number of you Port)
by FBMinis
Mon Oct 11, 2021 4:43 pm
Forum: ESP32 Arduino
Topic: Is it possible to take a photo and save it to an sdcard while also using an i2c device (DS3231 RTC)?
Replies: 0
Views: 2081

Is it possible to take a photo and save it to an sdcard while also using an i2c device (DS3231 RTC)?

Ive had success taking a photo and saving it to an SDCard but not when using an i2c connected RTC to take the photo at specific intervals. I havent been able to adjust the time, it always prints 21h00 when I do DateTime now = rtc.now(); Serial.print("rtc time: "); Serial.print(now.hour(), DEC); Seri...
by FBMinis
Wed Sep 29, 2021 10:46 pm
Forum: ESP32 Arduino
Topic: Any RTC chip known to work with ESP32 cam ?
Replies: 13
Views: 17755

Re: Any RTC chip known to work with ESP32 cam ?

Two more photos of the DS3231 module:
by FBMinis
Wed Sep 29, 2021 10:45 pm
Forum: ESP32 Arduino
Topic: Any RTC chip known to work with ESP32 cam ?
Replies: 13
Views: 17755

Re: Any RTC chip known to work with ESP32 cam ?

Only the DS3231 chip is needed, plus two 10k pull-up resistors for SDA and SCL, and the CR2032 cell. When an alarm is set and SQW is HIGH, the P-Channel Mosfet is open and the device is off, the quiescent current is very low which allows for 5 days of a photo being sent to Telegram every 2min. There...