ESP32 Network problems

zhq7857
Posts: 1
Joined: Sat Dec 29, 2018 8:34 am

ESP32 Network problems

Postby zhq7857 » Sat Dec 29, 2018 8:54 am

AT firmware and Arduino firmware were brushed respectively。
AT firmware is stable, but A's network latency is unstable,
firmware It's the latest version.
Can this problem be fixed?

Code: Select all

void setup()
{
    Serial.begin(115200);
    delay(10);

    // We start by connecting to a WiFi network

    Serial.println();
    Serial.println();
    Serial.print("Connecting to ");
    Serial.println(ssid);

    WiFi.begin(ssid, password);

    while (WiFi.status() != WL_CONNECTED) {
        delay(500);
        Serial.print(".");
    }

    Serial.println("");
    Serial.println("WiFi connected");
    Serial.println("IP address: ");
    Serial.println(WiFi.localIP());
}

void loop()
{
    delay(500);
}
Attachments
QQ图片20181229164511.png
QQ图片20181229164511.png (23.91 KiB) Viewed 2050 times
QQ图片20181229164404.png
QQ图片20181229164404.png (8.42 KiB) Viewed 2050 times

Who is online

Users browsing this forum: No registered users and 67 guests