/*
EX1_WiFi-Scan
This sketch demonstrates how to scan WiFi networks.
*/
#include "WiFi.h"
void setup()
{
Serial.begin(115200);
// Set WiFi to station mode and disconnect from an AP if it was previously connected
WiFi.mode(WIFI_STA);
WiFi.disconnect();
delay(100);
Serial.println("Setup done");
}
void loop()
{
// put your main code here, to run repeatedly:
}