8000 Router connection: 50% failure (50% success) · Issue #234 · espressif/arduino-esp32 · GitHub
[go: up one dir, main page]

Skip to content
Router connection: 50% failure (50% success) #234
Closed
@kas2

Description

@kas2

Hi,
I use this standard sketch to connect to Internet

#include <WiFi.h>

char* ssid = "xxxxxxxxxx";
char* password = "xxxxxxxx";

void setup() {
  Serial.begin(115200);
  delay(10);
  Serial.print("Connecting to "); Serial.println(ssid);
  WiFi.begin(ssid, password);
  while (WiFi.status() != WL_CONNECTED) {
    delay(500);
    Serial.print(WiFi.status());
  }
  Serial.print("\nWiFi connected   IP: "); Serial.println(WiFi.localIP());
}

void loop() {}

ESP8266 connects after each reboot
ESP32 only connects exactly half the case:

  • connect OK
  • reboot
  • connection failed
  • reboot
  • connect OK
  • reboot
  • connection failed
  • reboot ...

Any clue ??
Thanks

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0