Become a leader in the IoT community!
New DevHeads get a 320-point leaderboard boost when joining the DevHeads IoT Integration Community. In addition to learning and advising, active community leaders are rewarded with community recognition and free tech stuff. Start your Legendary Collaboration now!
Yh It happens most times , check your signal strength
, use the serial dot printIn to log the wifi rssi , it’s a good start
`int32_t rssi = WiFi.RSSI();
Serial.print(“Signal strength: “);
Serial.println(rssi); // Anything you get that is maybe close to to zero is better
`
A minus 40 is better than a minus 80 👍
Noisy power supply to ESP32’s Wi-Fi module can cause disconnections. Faulty or loose connections, such as antenna or power cables, can also interrupt cloud connectivity.
stabilize the power supply with capacitors or regulators and optimize Wi-Fi antenna placement and orientation if external antennas are being used. also make sure there aint any interfering devices close to it
I checked the RSSI and made some adjustments based on the signal strength. It seems more stable now, and I’m monitoring it over time. Appreciate the help!
CONTRIBUTE TO THIS THREAD