SSID of ESP8266 to chnage

Status
Not open for further replies.

pasidu

Member level 3
Joined
Jul 16, 2016
Messages
58
Helped
0
Reputation
0
Reaction score
0
Trophy points
6
Activity points
494
Dear All

I am using a ESP8266 12E module

It is working what should I expected. But I need to change the SSID of it

Please advice how to changed the SSID

Please advice

Thanks in advance
 

program it using the arduino IDE (recent version) and you have a command to make an access point and name your ssid what you want.
Code:
/* Set these to your desired credentials. */
const char *ssid = "ESPap";
const char *password = "thereisnospoon";
	WiFi.softAP(ssid, password);
 
Reactions: pasidu

    pasidu

    Points: 2
    Helpful Answer Positive Rating
Dear Kripton Thanks for the reply
It is working
Can I use like this

This is for hotspot SSID and Padword for connect my ESP to hotspot
Code:
const char* ssid = "HotspotSSID";
const char* password = "HotspotPassword";

This is AP SSId and Password

Code:
const char *ssid = "AP name ";
const char *password = "123456";
Is it necessary this code
Code:
WiFi.softAP(ssid, password);

Please advice

Thanks in advance
 

download the arduino ide and look at the example esp8266wifi->wifiaccesspoint
there is a complete example with comments inside.
 
Reactions: pasidu

    pasidu

    Points: 2
    Helpful Answer Positive Rating
Status
Not open for further replies.

Similar threads

Cookies are required to use this site. You must accept them to continue using the site. Learn more…