Search found 3 matches

by ysadik
Fri Jan 04, 2019 6:22 am
Forum: ESP32 Arduino
Topic: ESP32 DEV KIT v4 MODULE WiFi Disconnect Problem
Replies: 4
Views: 7033

Re: ESP32 DEV KIT v4 MODULE WiFi Disconnect Problem

Thank you for suggest but I tried and I can not see anything. Also module was look like disconnect wifi but program continue to work background.
by ysadik
Wed Jan 02, 2019 6:50 am
Forum: ESP32 Arduino
Topic: ESP32 DEV KIT v4 MODULE WiFi Disconnect Problem
Replies: 4
Views: 7033

Re: ESP32 DEV KIT v4 MODULE WiFi Disconnect Problem

void setup() { Serial.begin(115200); WiFi.begin(ssid, password); } void loop() { if(WiFi.status() != WL_CONNECTED) { Serial.print("."); digitalWrite (greenpin,LOW); replay = true; } else if (WiFi.status() == WL_CONNECTED && replay == true ) { Serial.println("IP address: "); Serial.println(WiFi.loca...
by ysadik
Mon Dec 31, 2018 7:34 am
Forum: ESP32 Arduino
Topic: ESP32 DEV KIT v4 MODULE WiFi Disconnect Problem
Replies: 4
Views: 7033

ESP32 DEV KIT v4 MODULE WiFi Disconnect Problem

hello, I'm working on ESP32 Dev Kit v4 module and I have a problem. After ESP32 connect to our wifi , it was disconnected in a few minute. How can I solved these problem? Why is ESP32 reason to disconnect? I began to start stabil but after 10 min or 20 min module was disconnected. Could someone help...