mirror of
https://github.com/wled/WLED.git
synced 2025-07-19 08:46:34 +00:00
Strings in flash
This commit is contained in:
parent
1b5cc2abf1
commit
076449a33d
@ -945,11 +945,11 @@ void serializeNetworks(JsonObject root)
|
||||
|
||||
for (int i = 0; i < status; i++) {
|
||||
JsonObject node = networks.createNestedObject();
|
||||
node["ssid"] = WiFi.SSID(i);
|
||||
node["rssi"] = WiFi.RSSI(i);
|
||||
node["bssid"] = WiFi.BSSIDstr(i);
|
||||
node["channel"] = WiFi.channel(i);
|
||||
node["enc"] = WiFi.encryptionType(i);
|
||||
node[F("ssid")] = WiFi.SSID(i);
|
||||
node[F("rssi")] = WiFi.RSSI(i);
|
||||
node[F("bssid")] = WiFi.BSSIDstr(i);
|
||||
node[F("channel")] = WiFi.channel(i);
|
||||
node[F("enc")] = WiFi.encryptionType(i);
|
||||
}
|
||||
|
||||
WiFi.scanDelete();
|
||||
|
Loading…
x
Reference in New Issue
Block a user