Search found 92 matches
- Wed Jun 23, 2021 3:15 am
- Forum: Hardware
- Topic: High Voltage Ripple across ESP32
- Replies: 7
- Views: 6915
Re: High Voltage Ripple across ESP32
And can anyone specify what are ways this ripples can be reduced? You could use an LDO or TVS diode to reduce the spikes. But better to look first at your 3.3v regulator, why is it passing such spikes through. Is the feedback loop node receiving noise? Is the output capacitance too low? Need to see...
- Sat Jun 12, 2021 3:07 am
- Forum: Hardware
- Topic: Soil Moisture Sensor with ESP32 Lolin32
- Replies: 8
- Views: 7596
Re: Soil Moisture Sensor with ESP32 Lolin32
If the supply.voltage is 3.3v it (most likely) won't output any higher than that. Separate parts of the system, figure out what isn't working. Can you use a multimeter or oscilloscope to read the analog voltage of the soil moisture sensor? Can you put an intermediate 0-3.3v on the ADC pin and read a...
- Wed Jun 09, 2021 3:55 am
- Forum: Hardware
- Topic: Soil Moisture Sensor with ESP32 Lolin32
- Replies: 8
- Views: 7596
Re: Soil Moisture Sensor with ESP32 Lolin32
Maybe you need something like
Code: Select all
pinMode(sensorPin, INPUT);
- Tue Jun 01, 2021 1:04 pm
- Forum: Hardware
- Topic: Optimizing ESP32 WROOM-E Devkit Power Supply
- Replies: 4
- Views: 4931
Re: Optimizing ESP32 WROOM-E Devkit Power Supply
What is your 5v phone charger rated for? 500mA, 1A, 2A?
Are capacitors close to the esp32 power supply pins? 100nF and 1uF
Are capacitors close to the esp32 power supply pins? 100nF and 1uF
- Sat May 29, 2021 3:50 am
- Forum: Hardware
- Topic: How to measure voltage of battery using ESP32 internal reference voltage?
- Replies: 1
- Views: 5263
Re: How to measure voltage of battery using ESP32 internal reference voltage?
See https://github.com/espressif/arduino-esp32/issues/1804
1.5 / 3.9 * 4095 = 1575, it's about what you'd expect
1.5 / 3.9 * 4095 = 1575, it's about what you'd expect
- Wed May 19, 2021 2:20 am
- Forum: Hardware
- Topic: Programming the internal flash on the ESP32-D2WD
- Replies: 3
- Views: 3553
Re: Programming the internal flash on the ESP32-D2WD
Esp32 pico with it's integrated crystal and flash will be smaller than standalone chip
- Fri Apr 30, 2021 10:49 pm
- Forum: Hardware
- Topic: BLE initate current consumption
- Replies: 2
- Views: 4865
Re: BLE initate current consumption
The recommended min power supply is 500mA 3.3V. Is your power supply smaller than that, causing the brown outs?
Little larger power supply and/or more output capacitance can help avoid the voltage dip brown out.
Little larger power supply and/or more output capacitance can help avoid the voltage dip brown out.
- Fri Apr 30, 2021 10:45 pm
- Forum: Hardware
- Topic: Operating the ESP32-WROOM32-UE at low supply voltage (2,7V - 3.0V)
- Replies: 3
- Views: 6087
Re: Operating the ESP32-WROOM32-UE at low supply voltage (2,7V - 3.0V)
Use a DC Boost converter to provide the proper voltage. Do you have size / cost / thermal constraints that prevent doing that?
- Thu Apr 22, 2021 6:00 pm
- Forum: Hardware
- Topic: ESP32 and digital pot X9C102
- Replies: 11
- Views: 14174
Re: ESP32 and digital pot X9C102
You can try blynk to handle the phone to esp32 communication
https://blynk.io/en/getting-started
https://blynk.io/en/getting-started
- Fri Apr 16, 2021 11:15 pm
- Forum: Hardware
- Topic: ESP32 and digital pot X9C102
- Replies: 11
- Views: 14174
Re: ESP32 and digital pot X9C102
5V on a dev board is straight from USB, that can supply power. But esp32 is a 3.3v device, don't put 5v on any gpio pin. If you can, supply the pot with 3.3v. Some of the gpio have multiple purposes, like strapping pins, their value is read at boot up to set some settings. So if you have other stuff...