There's an internal pull-up on IO0 and pulldown on IO2, no need for external resistors.
https://www.esp32.com/viewtopic.php?t=5970
Search found 65 matches
- Tue Jan 19, 2021 3:27 pm
- Forum: Hardware
- Topic: ESP-WROOM-32 not programming
- Replies: 4
- Views: 117
- Sat Jan 16, 2021 7:36 am
- Forum: Hardware
- Topic: Peripheral Timer eventually returning unexpected count
- Replies: 2
- Views: 292
Re: Peripheral Timer eventually returning unexpected count
Can you share more of your code? Are you using an interrupt function triggered by the counter pulse?
What does ".counter_en = false " do?.
It's 1kHz, 40 divider, why do you expect 2000 counts? Is it run for 80 seconds?
What does ".counter_en = false " do?.
It's 1kHz, 40 divider, why do you expect 2000 counts? Is it run for 80 seconds?
- Sat Jan 16, 2021 7:30 am
- Forum: Hardware
- Topic: LOLIN D32 Pro V2.0.0 power/battery red LED keeps flashing quickly
- Replies: 2
- Views: 383
Re: LOLIN D32 Pro V2.0.0 power/battery red LED keeps flashing quickly
The led is connected to TP4054 CHRG pin. With no battery connected, maybe it is doing the "charge complete / AC present" indicator of 20uA pull down. Are you seeing a bright flash or very dim? https://i.imgur.com/mwLLfeQ.png https://i.imgur.com/yWuAvCs.png Maybe your usb port is doing something like...
- Fri Jan 15, 2021 6:38 am
- Forum: Hardware
- Topic: Voltage monitor of battery
- Replies: 8
- Views: 500
Re: Voltage monitor of battery
Read this post, it was published by espressif, you need to manually measure vref and then input it in your code as a calibration: https://www.esp32.com/viewtopic.php?f=19&t=2881&start=20#p16166 The analog_read function is not applying calibration or anything. So if you use analog_read, you must conv...
- Fri Jan 15, 2021 1:42 am
- Forum: Hardware
- Topic: Pin behaviour in case of chip defect
- Replies: 6
- Views: 600
Re: Pin behaviour in case of chip defect
Yes as chegewara said the watchdog chip is simpler and less likely to fail and the esp32. So you have shifted the problem from the ESP 32 over to the watchdog chip, you shifted the problem from a more likely failure to a less likely failure and that is a success. You also can have a watchdog chip th...
- Fri Jan 15, 2021 12:55 am
- Forum: Hardware
- Topic: Voltage monitor of battery
- Replies: 8
- Views: 500
Re: Voltage monitor of battery
Two point calibration will correct the offset and slope, thus you'll be more correct at both the low end and high end. Efuse vref can be single point or two point, obviously two point is a little better. Two Point values represent each of the ADCs’ readings at 150 mV and 850 mV. To obtain more accur...
- Thu Jan 14, 2021 3:17 pm
- Forum: Hardware
- Topic: Voltage monitor of battery
- Replies: 8
- Views: 500
Re: Voltage monitor of battery
I think you need the vref from efuse, about 1.1V. You said it read 1.46 when you measured 1.6, that would explain the difference.avg_voltage = ((3.3/4095)*avg_dig_voltage)
Also I think it should be 4096, 2^12, not 4095
- Tue Jan 12, 2021 4:49 am
- Forum: Hardware
- Topic: Pin behaviour in case of chip defect
- Replies: 6
- Views: 600
Re: Pin behaviour in case of chip defect
You could do a 555 timer that will pull the gate low after some short time like 50 ms. Then have your esp32 pulse to reset the 555 timer like every 40 ms. If your esp32 fails to reset the timer for any reason then the 555 will complete and pull the gate low. There are probably also watchdog chips th...
- Sat Jan 09, 2021 4:45 am
- Forum: Hardware
- Topic: Schematic review needed
- Replies: 11
- Views: 1052
Re: Schematic review needed
IO0 can float
EN must pull up
EN must pull up
- Tue Jan 05, 2021 6:54 am
- Forum: Hardware
- Topic: esp-wrover recomended footprint
- Replies: 2
- Views: 124
Re: esp-wrover recomended footprint
Look at the bottom of the module, the vias nearby do not have exposed copper. Follow the recommended footprint you should be fine. I guess if you were really concerned you could make them 1.35mm instead of 2mm (.85mm under module plus .5mm extending out from module). But generally the manufacturer's...