User defined SSID and PASSWORD ESP8266

Hello There!

Let me tell you first that I am new to coding. And learning some from online sources. So this post is to ask you guys that how do I write a code so that user can change the password and SSID off SoftAP mode using ESP8266 modules? I am using esp8266 core library. Any kind of help will be great.

Thank you.

You could save the SSID and password to SPIFFS or EEPROM.
Read these values back when booting up, using them as parameters for WiFi.softAP().

Take a look at the following example to get user input from a web interface. You might want to give the previous chapters a read first if you're a complete beginner.

Pieter

@PieterP

Thank you for the guidance. I will look in it. :slight_smile:

I use WiFiManager.