-->
Page 1 of 1

change nodemcu default Access point name AI-Thinkkerxxxx

PostPosted: Fri May 19, 2017 9:30 am
by sabiha patan 123
How to change the default access point name of nodemcu (AI Thinkerxxxx to some other name)? Does it require any changes in library?

Re: change nodemcu default Access point name AI-Thinkkerxxxx

PostPosted: Sat May 20, 2017 4:47 pm
by QuickFix
I think these kinds of questions actually belong in the ** Newbie Corner ** forums :idea:

That having being said: when using a project (eg. an Arduino sketch), there's always an option that lets you configure the required settings, like SSID, channel-number, etc.
When using AT commands, you'll have to use the AT+CWSAP-command

For instance:
Code: Select allAT+CWSAP="QuickFix","",1,0

Which will set the access point with settings:
  • SSID: QuickFix
  • Password: <empty> (no password required, resulting in an open AP)
  • Channel: 1
  • Encryption: <none> (no encryption used)
To review the current settings enter the following:
Code: Select allAT+CWSAP?

Re: change nodemcu default Access point name AI-Thinkkerxxxx

PostPosted: Thu May 25, 2017 4:56 am
by sabiha patan 123
I have designed a custom development board using ESP8266 chip. By default, it shows AI-THINKERXXXX as a network(without uploading any sketch). What changes should I make to change that name to other name?

Re: change nodemcu default Access point name AI-Thinkkerxxxx

PostPosted: Thu May 25, 2017 9:23 am
by QuickFix
Just enter the AT+CWSAP= command (with the required parameters) like in my previous reply above.