Search found 84 matches

by alanesq
Fri Mar 11, 2022 6:02 pm
Forum: Hardware
Topic: ESP32-Cam - Best Port Expander
Replies: 3
Views: 2847

Re: ESP32-Cam - Best Port Expander

Hi,
I have a sketch here where I use the MCP23017 chip on pins 12 and 13 (using sd card in 1-bit mode)
https://github.com/alanesq/esp32cam-demo
by alanesq
Fri Mar 04, 2022 8:04 am
Forum: Hardware
Topic: Powering ESP32 with Lithium battery (step up module)
Replies: 4
Views: 3984

Re: Powering ESP32 with Lithium battery (step up module)

Hi,
The vin pin will be expecting 5v (i.e. the power from the usb socket)
the 3.3v pin on the other side is the power going to the esp32 module
by alanesq
Thu Feb 03, 2022 8:22 am
Forum: General Discussion
Topic: ESP32 wifi stops fonctionning after a while
Replies: 3
Views: 4388

Re: ESP32 wifi stops fonctionning after a while

Another thing always worth checking with an esp project is the power supply, I can't tell you how many times I have forgotten this myself and wasted hours on a problem only to discover it was just an issue with the 5v supply.
by alanesq
Wed Feb 02, 2022 7:11 am
Forum: General Discussion
Topic: ESP32 wifi stops fonctionning after a while
Replies: 3
Views: 4388

Re: ESP32 wifi stops fonctionning after a while

Hi,

I had similar problems with my esp8266 projects and it turned out the wifi was going in to a sleep mode after a length of inactivity

On the ESP32 (Arduino IDE) the command to prevent this is: WiFi.setSleep(false);
by alanesq
Thu Jan 27, 2022 7:24 am
Forum: Hardware
Topic: ESP32-CAM stream while writing to SD card?
Replies: 2
Views: 3504

Re: ESP32-CAM stream while writing to SD card?

Hi, I think the limiting factor will be how fast data can be written to the sd card This sketch is the best I have seen for recording video but the camera can capture the images much faster than they can be written to the sd card (at least when I tried it) https://github.com/mtnbkr88/ESP32CAMVideoRe...
by alanesq
Mon Jan 24, 2022 7:33 am
Forum: Hardware
Topic: esp32 cam with fingerprint reader
Replies: 5
Views: 5157

Re: esp32 cam with fingerprint reader

Hi, The available pins are very limited on the esp32cam, my best understanding is: If using the sd card (must be in 1-bit mode) the main io pins available for general use are 13 and 12 (12 must not be high at boot), 14, 2 & 15 should also be available if you are not using the SD Card. You can also u...
by alanesq
Thu Jan 13, 2022 8:01 am
Forum: Hardware
Topic: Achieving Low Power while using the WiFi
Replies: 3
Views: 6597

Re: Achieving Low Power while using the WiFi

This thread may be of interest
https://www.esp32.com/viewtopic.php?t=12067
by alanesq
Mon Jan 03, 2022 7:17 am
Forum: Hardware
Topic: What is the most commonly available ESP32 dev board? Pinout and dimensions?
Replies: 4
Views: 8558

Re: What is the most commonly available ESP32 dev board? Pinout and dimensions?

Hi,
The 30pin Devkit is probably a good one to start with as they are readily available on eBay and cheap
This may be of help: https://randomnerdtutorials.com/getting ... ith-esp32/
BTW - This is an excellent website, full of lots of information
by alanesq
Fri Dec 10, 2021 7:58 am
Forum: ESP32 Arduino
Topic: ESP32 Crashing after 10 - 20 mins of running
Replies: 1
Views: 2796

Re: ESP32 Crashing after 10 - 20 mins of running

I know it seems trivial, but are you sure the power to the esp32 is good?
I can't tell you how many hours I have wasted chasing strange problems like this only to discover it is just a power issue.
by alanesq
Thu Nov 25, 2021 8:12 am
Forum: Hardware
Topic: ESP32-CAM reset button doesn't seem to work
Replies: 2
Views: 8153

Re: ESP32-CAM reset button doesn't seem to work

If you disconnect then reconnect the power supply to the esp32cam board whilst not disconnecting the FTDI board from your computer this should have the same effect as pressing the reset button on the esp32cam module If you go in to the DHCP settings on your router you should be able to see what IP a...