Voltage drop using esp32 bluetooth
Posted: Mon Oct 30, 2023 11:06 am
When powering the ESP32 via the Vin pin and activating Bluetooth, I have noticed a voltage drop of approximately 60 mV occurring approximately every 600 milliseconds, as evidenced in the image provided. I'm looking for recommendations to eliminate this voltage fluctuation. What suggestions can you give me?
#include <BluetoothSerial.h>
BluetoothSerial SerialBT;
void setup() {
delay(10000);
SerialBT.begin("ESP32_Device");
}
void loop() {
delay(100);
SerialBT.println("hello");
}
#include <BluetoothSerial.h>
BluetoothSerial SerialBT;
void setup() {
delay(10000);
SerialBT.begin("ESP32_Device");
}
void loop() {
delay(100);
SerialBT.println("hello");
}