Skip to content
This repository has been archived by the owner on Feb 4, 2023. It is now read-only.

Commit

Permalink
v1.2.1 : Workaround for WiFi.status() bug
Browse files Browse the repository at this point in the history
#### Releases v1.2.1

1. Workaround for RP2040W WiFi.status() bug. Check [WiFi.status() wrongly reports WL_CONNECTED even when WiFi is lost and RSSI is always 0 dBm #762](earlephilhower/arduino-pico#762)
2. Add example [WiFiMulti_RP2040W](examples/WiFiMulti_RP2040W)
  • Loading branch information
khoih-prog authored Aug 16, 2022
1 parent e80f80d commit 02f8b55
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 10 deletions.
1 change: 0 additions & 1 deletion examples/WiFiMulti/WiFiMulti.ino
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,6 @@ void setup()
#endif

wifiMulti.addAP(your_ssid, your_pass);
wifiMulti.addAP("HueNet2", "jenniqqs");
wifiMulti.addAP("ssid_from_AP_1", "your_password_for_AP_1");
wifiMulti.addAP("ssid_from_AP_2", "your_password_for_AP_2");
wifiMulti.addAP("ssid_from_AP_3", "your_password_for_AP_3");
Expand Down
6 changes: 2 additions & 4 deletions examples/WiFiMulti/defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -523,9 +523,7 @@

#include <WiFiMulti_Generic.h>

char your_ssid[] = "HueNet1"; // your network SSID (name)
char your_pass[] = "jenniqqs"; // your network password
//char your_ssid[] = "YOUR_SSID"; // your network SSID (name)
//char your_pass[] = "12345678"; // your network password
char your_ssid[] = "YOUR_SSID"; // your network SSID (name)
char your_pass[] = "12345678"; // your network password

#endif //defines_h
1 change: 0 additions & 1 deletion examples/WiFiMulti_RP2040W/WiFiMulti_RP2040W.ino
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@ void setup()
Serial.println(WIFIMULTI_GENERIC_VERSION);

wifiMulti.addAP(your_ssid, your_pass);
wifiMulti.addAP("HueNet2", "jenniqqs");
wifiMulti.addAP("ssid_from_AP_1", "your_password_for_AP_1");
wifiMulti.addAP("ssid_from_AP_2", "your_password_for_AP_2");
wifiMulti.addAP("ssid_from_AP_3", "your_password_for_AP_3");
Expand Down
6 changes: 2 additions & 4 deletions examples/WiFiMulti_RP2040W/defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,7 @@

#include <WiFiMulti_Generic.h>

char your_ssid[] = "HueNet1"; // your network SSID (name)
char your_pass[] = "jenniqqs"; // your network password
//char your_ssid[] = "YOUR_SSID"; // your network SSID (name)
//char your_pass[] = "12345678"; // your network password
char your_ssid[] = "YOUR_SSID"; // your network SSID (name)
char your_pass[] = "12345678"; // your network password

#endif //defines_h

0 comments on commit 02f8b55

Please sign in to comment.