-->
Page 1 of 1

Unable to change ssid and password in either modes

PostPosted: Fri Aug 05, 2016 6:07 pm
by ma.ag37
Hello,

I am a newbie to ESP8266 and have been using to with Nodemcu 0.9.5 build 20150318. However in either modes (SOFTAP and STATIONAP) I am unable to change the access point SSID and PASSWORD from a preset value.

code used:

wifi.setmode(wifi.STATIONAP);
wifi.ap.config({ssid="myHome1",pwd="1234"})


please help

Re: Unable to change ssid and password in either modes

PostPosted: Sat Aug 06, 2016 9:29 am
by martinayotte
Password length must be between 8 to 63 characters.
Having only 4 characters like shown above fail to respect the standards.

Re: Unable to change ssid and password in either modes

PostPosted: Sat Aug 06, 2016 12:19 pm
by ma.ag37
martinayotte wrote:Password length must be between 8 to 63 characters.
Having only 4 characters like shown above fail to respect the standards.


Issue solved. Thanks for the help

Re: Unable to change ssid and password in either modes

PostPosted: Sat Aug 06, 2016 12:20 pm
by ma.ag37
Issue solved. Thanks for the help