Nazdar, mám ESP8266 a zkouším tento kód
#include "ESP8266WiFi.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");
// WiFi.scanNetworks will return the number of networks found
int n = WiFi.scanNetworks();
Serial.println("scan done");
if (n == 0)
Serial.println("no networks found");
else
{
Serial.println(" networks found");
for (int i = 0; i < n; ++i)
{
// Print SSID and RSSI for each network found
Serial.print(WiFi.SSID(i));
delay(10);
}
}
Serial.println("ahoj");
// Wait a bit before scanning again
delay(5000);
}
Problém je ten, že pokaždé co se podívám do sériového monitoru píše to tohle:
Díky za odpověď