Page 1 of 1

ESP32 Network problems

Posted: Sat Dec 29, 2018 8:54 am
by zhq7857
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);
}