-->
Page 1 of 1

PWNED hotspot appearing after i connect to WIFI

PostPosted: Fri Jan 31, 2020 8:45 am
by BugBlaster
Hi guys, not sure if i am posting this in the right place but here goes

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() {}

Re: PWNED hotspot appearing after i connect to WIFI

PostPosted: Fri Jan 31, 2020 10:52 am
by btidey
Try including

Code: Select allWiFi.mode(WIFI_STA);


so that is only in STA mode rather than STA and AP combined.