I am trying to get back in to the ESP8266 but i am getting a PWNED wifi hotspot when i connect to my wifi.
I even get it with the following code so am i right being concerned or is this normal
I am using a Nodemcu board with the built in display (HW-630)
#include <ESP8266WiFi.h>
void setup()
{
Serial.begin(115200);
Serial.println();
WiFi.begin("########", "########l");
Serial.print("Connecting");
while (WiFi.status() != WL_CONNECTED)
{
delay(500);
Serial.print(".");
}
Serial.println();
Serial.print("Connected, IP address: ");
Serial.println(WiFi.localIP());
}
void loop() {}