File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -288,10 +288,13 @@ class ws_networking_pico : public Wippersnapper {
288
288
_wifiMulti.addAP (WS._multiNetworks [i].ssid ,
289
289
WS._multiNetworks [i].pass );
290
290
}
291
+ WS.feedWDT ();
291
292
if (_wifiMulti.run (10000 ) == WL_CONNECTED) {
293
+ WS.feedWDT ();
292
294
_status = WS_NET_CONNECTED;
293
295
return ;
294
296
}
297
+ WS.feedWDT ();
295
298
} else {
296
299
WiFi.begin (_ssid, _pass);
297
300
// Wait setTimeout duration for a connection and check if connected
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ void WipperSnapper_LittleFS::parseSecrets() {
93
93
if (i >= 3 ) {
94
94
WS_DEBUG_PRINT (" WARNING: More than 3 networks in secrets.json, "
95
95
" only the first 3 will be used. Not using " );
96
- WS_DEBUG_PRINTLN (networks[i][" ssid " ].as <const char *>());
96
+ WS_DEBUG_PRINTLN (networks[i][" network_ssid " ].as <const char *>());
97
97
break ;
98
98
}
99
99
convertFromJson (networks[i], WS._multiNetworks [i]);
Original file line number Diff line number Diff line change @@ -377,7 +377,7 @@ void Wippersnapper_FS::parseSecrets() {
377
377
if (i >= 3 ) {
378
378
WS_DEBUG_PRINT (" WARNING: More than 3 networks in secrets.json, "
379
379
" only the first 3 will be used. Not using " );
380
- WS_DEBUG_PRINTLN (networks[i][" ssid " ].as <const char *>());
380
+ WS_DEBUG_PRINTLN (networks[i][" network_ssid " ].as <const char *>());
381
381
break ;
382
382
}
383
383
convertFromJson (networks[i], WS._multiNetworks [i]);
You can’t perform that action at this time.
0 commit comments