#include "AtWiFi.h"
const char* ssid = "yourNetworkName";
const char* password = "yourNetworkPassword";
void setup() {
Serial.begin(115200);
while(!Serial); // Wait for Serial to be ready
delay(1000);
// Set WiFi to station mode and disconnect from an AP if it was previously connected
WiFi.mode(WIFI_STA);
WiFi.disconnect();
delay(2000);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.println("Connecting to WiFi..");
}
Serial.println("Connected to the WiFi network");
Serial.print("IP Address: ");
Serial.println (WiFi.localIP()); // prints out the device's IP address
}
void loop() {
}
Yes. And I followed the wireless firmware flash instructions successfully as evidenced by the network scan working correctly. It shows my network ssid. I have ssid and password stored in a password manager and used copy/paste so there’s no typographical error. Is there any way to debug what’s going on while WiFi.status() != WL_CONNECTED?
Hi @ansonhe97,
is 5GHz Wifi still not supported?
Is there a timetable for a fix, as this is part of the specifications printed on the WIO Terminal cardboard box.
5GHz is essential for me - so I moved from ESP32 boards to WIO terminal…
Hi @Baozhu,
I totally agree that developing is not easy at all, but this should be done prior to launching a product.
I am not sure how to react in a polite way to this information as Wifi 5 GHz is clearly advertised on the product box etc.
I even payed a lot to get one quicker instead of buying from China warehouse.
What do you suggest? Return the product?