Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

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);
 
  • Like
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.
 
  • Like
Reactions: pasidu

    pasidu

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

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top