Installation Instructions

OpentheArduinoIDEandopentheexampleprogram File -> Examples -> WiFi -> WiFiScan .Connectthe
devicetothecomputerandselectthecorrespondingporttoburn.Aftercompletion,thedevicewillautomatically
runtheWiFiscan,andthecurrentWiFiscanresultcanbeobtainedthroughtheserialportmonitorthatcomeswith
theArduino.
#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()
{
Serial.println("scanstart");