-->
Page 1 of 1

Remove AP mode?

PostPosted: Wed Nov 22, 2017 7:49 am
by venenodcuba
Hello to all, I'm testing with the nodemcu esp8266 and it works correctly as a client, it fulfills the function that I need but, scanning for wifi networks I see that despite being connected as a client to an access point he has created a point of access, is there a way to let it work only as a Wi-Fi client?

Re: Remove AP mode?

PostPosted: Fri Nov 24, 2017 1:13 pm
by gdsports
If you are using the Arduino IDE, add the following to the setup function before WiFi.begin.

Code: Select allWiFi.mode(WIFI_STA);

Re: Remove AP mode?

PostPosted: Fri Nov 24, 2017 5:58 pm
by venenodcuba
ThankĀ“s work perfect