Page 1 of 1

Entering SSID and Password in ESP32

Posted: Sat Nov 04, 2017 6:44 pm
by bhavenm
Normally we enter the SSID and password in ESp32 using the program. I am wondering if there is a simple way where it is attached to PC via USB cable and then simpler way which will ask for the Network name and password without opening the Arduino IDE or Eclipse or the .c file for the code.

Re: Entering SSID and Password in ESP32

Posted: Tue Nov 07, 2017 8:58 am
by Franco
You can configure the module as Station and send SSID and pwd via a terminal with the AT commands:
AT+CWMODE=1 and
AT+CWJAP="SSID","pwd"
The AT commands manual is here http://espressif.com/sites/default/file ... les_en.pdf

Re: Entering SSID and Password in ESP32

Posted: Tue Nov 07, 2017 10:11 am
by kurtzweber
Hi

maybe you're looking for a "Wifi Manager" library, like:
https://github.com/zhouhan0126/WIFIMANAGER-ESP32