Search found 45 matches

by Pibbotley
Sun May 06, 2018 5:40 pm
Forum: General Discussion
Topic: Powered ESP32 with 18650, LiPo, or button battery
Replies: 15
Views: 33427

Re: Powered ESP32 with 18650, LiPo, or button battery

I've occasionaly (accidently) supplied 12v to my dev kits but you can smell the LDO overheating in a matter of seconds. You would have to add heatsinks / forced cooling. To disable the power led flick it or its resistor off with a sharp tool, or cut the trace.
by Pibbotley
Thu May 03, 2018 6:52 pm
Forum: General Discussion
Topic: Robust method to receive data from UART?
Replies: 8
Views: 13938

Re: Robust method to receive data from UART?

I too would like a fast and robust UART (or SPI) connection method between a STM32 and a ESP32 as I'd like to use a STM32 as a device driver for an OV2640 camera to stream the JPEGs to the ESP32, but I have had issues with lost bytes at speeds over 1Mbit.
by Pibbotley
Thu May 03, 2018 6:30 pm
Forum: General Discussion
Topic: i want to map analog pins on 5volt between 0 to 1023 (10 bit resolution)
Replies: 35
Views: 51344

Re: i want to map analog pins on 5volt between 0 to 1023 (10 bit resolution)

Having faffed around with The ESP32 ADCs inputs for a while I can reiterate what other posters have said. Use a voltage divider to scale down the sensor output - if using the default 11db attenuation, divide to less than 3.1V as the ADC tops out at around 3.14V. Apply a bias voltage of at least 200m...
by Pibbotley
Thu May 03, 2018 6:00 pm
Forum: General Discussion
Topic: How bout dat RSSI
Replies: 4
Views: 6059

Re: How bout dat RSSI

I buy second hand routers for peanuts and configure them as bridges to the dedicated router. My ESP32s then connect to whichever has the strongest signal.
by Pibbotley
Thu May 03, 2018 1:44 pm
Forum: General Discussion
Topic: Powered ESP32 with 18650, LiPo, or button battery
Replies: 15
Views: 33427

Re: Powered ESP32 with 18650, LiPo, or button battery

I use one of these for portable esp32 power which works fine
https://www.ebay.com/itm/Raspberry-Pi-W ... e-no-cable
by Pibbotley
Thu May 03, 2018 1:33 pm
Forum: General Discussion
Topic: Get interrupt reason in callback
Replies: 10
Views: 11011

Re: Get interrupt reason in callback

Not sure if its helping but why not have an ISR per edge type, or read the pin state outside the ISR.
by Pibbotley
Fri Feb 23, 2018 5:55 pm
Forum: General Discussion
Topic: ADC Calibrated Value still not correct?
Replies: 4
Views: 10600

Re: ADC Calibrated Value still not correct?

As a follow on inspired by G6EJD script, I derived my own third order polynomial to get end to end readings accurate to within 1%. I recorded 6 readings and used an online curve fitting site. You have to do this for each individual ESP32 however, but each ADC pin per ESP32 seems similar. To overcome...
by Pibbotley
Thu Feb 22, 2018 7:55 pm
Forum: General Discussion
Topic: ADC Calibrated Value still not correct?
Replies: 4
Views: 10600

Re: ADC Calibrated Value still not correct?

I've been playing around with ADC too, trying out different resolutions and attenuations, and even bias voltages, but the script that you reference easily provides the most accurate calibration. It also confirms what I'd found that the default ADC setting tops out at around 3.14V. This also affects ...
by Pibbotley
Mon Feb 19, 2018 9:45 am
Forum: General Discussion
Topic: Image Size OV2640
Replies: 3
Views: 6721

Re: Image Size OV2640

I tried an ov2640 with my wrover dev kit. Its only worth using jpeg mode. Working with raw images is too much hassle so don't bother with the ov7670. You must have short solid connections to avoid any noise, even so its still a bit flaky. Missing a single bit in a jpeg capture will lose the whole fr...
by Pibbotley
Mon Feb 19, 2018 9:28 am
Forum: General Discussion
Topic: ADC input minimum current
Replies: 2
Views: 6211

Re: ADC input minimum current

Excellent, thanks