Search found 29 matches

by Radu79
Sat Feb 06, 2021 4:17 pm
Forum: ESP32 Arduino
Topic: PSRAM error in ESP32-CAM
Replies: 1
Views: 6790

Re: PSRAM error in ESP32-CAM

Esp32 cam comes with 4mb of ram. Did you try the web streaming example? If you can change the image size to 2MP then you have the ram. This line tells you if you have psram: if(psramFound()) Btw, I've noticed, if you leave GPIO 0 connected to ground after you restart the program it says it has 0 PSR...
by Radu79
Fri Feb 05, 2021 1:15 pm
Forum: ESP32 Arduino
Topic: Ending an i2c connection (something like Wire.end() )
Replies: 1
Views: 2295

Re: Ending an i2c connection (something like Wire.end() )

Moving SDA on pin 14 fixed the issue.
by Radu79
Thu Feb 04, 2021 11:48 pm
Forum: ESP32 Arduino
Topic: Ending an i2c connection (something like Wire.end() )
Replies: 1
Views: 2295

Ending an i2c connection (something like Wire.end() )

I have to connect an i2c light sensor to my ESp32 cam, to read the light level in order to set the proper exposure for an ov5640 sensor (the sensor has its own registries that are supposed to work, but they are unreliable). I only need to read the light once, before the camera is initialized. My cod...
by Radu79
Wed Jan 13, 2021 9:51 am
Forum: ESP32 Arduino
Topic: Establish WiFi connection to AP with strongest radio signal
Replies: 12
Views: 17835

Re: Establish WiFi connection to AP with strongest radio signal

I have the same module, and like others I am experiencing wifi issues even with the board a few feet from the router (the only router).
I think it is a hardware issue, because other boards, like the m5stack camera board works fine.
by Radu79
Sat Dec 26, 2020 4:10 pm
Forum: ESP32 Arduino
Topic: Timelapse with ESP32 cam (I just released my code on github)
Replies: 0
Views: 2792

Timelapse with ESP32 cam (I just released my code on github)

I've been working for over two months at this program, so I hope it is helpful for others.
https://github.com/raduprv/esp32-cam_ov2640-timelapse

Looking forward for any feedback.
by Radu79
Tue Dec 08, 2020 4:31 pm
Forum: ESP32 Arduino
Topic: ESp32 cam ov2640 manual exposure problems
Replies: 0
Views: 2120

ESp32 cam ov2640 manual exposure problems

I've been playing with this sensor for over a month, and found out many of its 'secrets' (undocumented things), but for the life of me I can't see how to do manual exposure. I can get really long exposures by playing with the clock dividers, adding pixels to lines and lines to the frame, but I can't...
by Radu79
Sat Dec 05, 2020 6:20 pm
Forum: ESP32 Arduino
Topic: Any RTC chip known to work with ESP32 cam ?
Replies: 13
Views: 15642

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

Yeah, I have some other plans with this board (a hidden time lapse camera that I put in public places to create timelapse videos of life in general). I didn't get to the hardware part yet, I am still working at the software (ov2640 is not very well documented, so I had to do a lot of work to documen...
by Radu79
Sat Dec 05, 2020 2:07 pm
Forum: ESP32 Arduino
Topic: Any RTC chip known to work with ESP32 cam ?
Replies: 13
Views: 15642

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

One other thing, why don't you just use a lifepo4 battery, with a small solar panel?
by Radu79
Sat Dec 05, 2020 2:03 pm
Forum: ESP32 Arduino
Topic: Any RTC chip known to work with ESP32 cam ?
Replies: 13
Views: 15642

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

Unfortunately, what you want to do is not possible without modifying the hardware. Read this article: https://time4ee.com/articles.php?article_id=126 So even with those modifications, you will still have some current draw. BTW, after you take the photo, do this: s->set_reg(s,0xff,0xff,0x01);//bankse...
by Radu79
Sat Dec 05, 2020 12:53 am
Forum: ESP32 Arduino
Topic: Any RTC chip known to work with ESP32 cam ?
Replies: 13
Views: 15642

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

Why don't you just sleep it and wake up every day or so, and check if it's the last day of the month?
Btw, are you going to do any hardware modifications, like removing or replacing the LDO? Because by default it takes about 6.5 mA in deep sleep mode (-1 mA less if there is no SD card).