arduinoesp32arduino-idearduino-c++arduino-esp32

Unable to connect to WiFi with a Wemos S2 Mini clone?


I bought this Wemos S2 Mini three-pack from Amazon last week and I've been pulling my hair out trying to get them to connect to WiFi. I have the Ardiuno IDE 1.8.19 set to a LOLIN S2 Mini from Espressif 2.0.3 as directed, with Arduino WiFi 1.2.7, and am running this code:

#include <WiFi.h>

void setup() {
  WiFi.mode(WIFI_STA);
  WiFi.begin("ssid", "psk");
  while (WiFi.status() != WL_CONNECTED) {
    delay(1000);
    Serial.print(".");
  }
  Serial.println("Connected to WiFi network with IP Address:");
  Serial.println(WiFi.localIP());
}

void loop() {
  //
}

All I get is endless ........ in the Serial Monitor. I've tried:

No dice. Bad hardware? What am I missing?


Solution

  • Purchased an actual LOLIN S2 Mini from AliExpress, ran the same code, worked immediately. Don't buy these shitty knockoffs from Amazon.