Search found 92 matches

by becorey
Wed Jun 23, 2021 3:15 am
Forum: Hardware
Topic: High Voltage Ripple across ESP32
Replies: 7
Views: 5564

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...
by becorey
Sat Jun 12, 2021 3:07 am
Forum: Hardware
Topic: Soil Moisture Sensor with ESP32 Lolin32
Replies: 8
Views: 6409

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...
by becorey
Wed Jun 09, 2021 3:55 am
Forum: Hardware
Topic: Soil Moisture Sensor with ESP32 Lolin32
Replies: 8
Views: 6409

Re: Soil Moisture Sensor with ESP32 Lolin32

Maybe you need something like

Code: Select all

pinMode(sensorPin, INPUT);
by becorey
Tue Jun 01, 2021 1:04 pm
Forum: Hardware
Topic: Optimizing ESP32 WROOM-E Devkit Power Supply
Replies: 4
Views: 4109

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
by becorey
Wed May 19, 2021 2:20 am
Forum: Hardware
Topic: Programming the internal flash on the ESP32-D2WD
Replies: 3
Views: 2902

Re: Programming the internal flash on the ESP32-D2WD

Esp32 pico with it's integrated crystal and flash will be smaller than standalone chip
by becorey
Fri Apr 30, 2021 10:49 pm
Forum: Hardware
Topic: BLE initate current consumption
Replies: 2
Views: 3791

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.
by becorey
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: 4665

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?
by becorey
Thu Apr 22, 2021 6:00 pm
Forum: Hardware
Topic: ESP32 and digital pot X9C102
Replies: 11
Views: 11418

Re: ESP32 and digital pot X9C102

You can try blynk to handle the phone to esp32 communication
https://blynk.io/en/getting-started
by becorey
Fri Apr 16, 2021 11:15 pm
Forum: Hardware
Topic: ESP32 and digital pot X9C102
Replies: 11
Views: 11418

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...