You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is the scanNetworks( true ) implemented?
It does not seem like the static void _scanDone(); is used anywhere in the code, and when I call 👍
scanNetworks( true );
int n;
for(;;)
{
Serial.println("scanning...");
n = WiFi.scanComplete();
if( n != WIFI_SCAN_RUNNING )
break;
Serial.println( n );
delay( 1000 );
}
the loop runs forever...
How to use scanNetworks asynchronous? I want to perform other tasks while scanning in the main loop
The text was updated successfully, but these errors were encountered:
Is the scanNetworks( true ) implemented?
It does not seem like the static void _scanDone(); is used anywhere in the code, and when I call 👍
scanNetworks( true );
the loop runs forever...
How to use scanNetworks asynchronous? I want to perform other tasks while scanning in the main loop
The text was updated successfully, but these errors were encountered: