2

I have this(Wifi Manager - Autoconnect IP) program run in my arduino IDE. And I get the output in serial monitor as this

Serial Monitor Output

Can Anyone help me in displaying my SSID and PASS in this serial monitor output?

My code is this

#include <ESP8266WiFi.h> //https://github.com/esp8266/Arduino
//needed for library
#include <DNSServer.h>
#include <ESP8266WebServer.h>
#include <WiFiManager.h> //https://github.com/tzapu/WiFiManager
void setup() {
 // put your setup code here, to run once:
 Serial.begin(115200);
 //WiFiManager
 //Local intialization. Once its business is done, there is no need to keep it around
 WiFiManager wifiManager;
 //reset saved settings
 //wifiManager.resetSettings();
 //set custom ip for portal
 //wifiManager.setAPStaticIPConfig(IPAddress(10,0,1,1), IPAddress(10,0,1,1), IPAddress(255,255,255,0));
 //fetches ssid and pass from eeprom and tries to connect
 //if it does not connect it starts an access point with the specified name
 //here "AutoConnectAP"
 //and goes into a blocking loop awaiting configuration
 wifiManager.autoConnect("AutoConnectAP");
 //or use this for auto generated name ESP + ChipID
 //wifiManager.autoConnect();
 //if you get here you have connected to the WiFi
 Serial.println("connected...yeey :)");
}
void loop() {
 // put your main code here, to run repeatedly:
}
I am using WIFImanager library example - Autoconnect 
asked Dec 14, 2019 at 7:16
2

1 Answer 1

1

You can use functions SSID() and psk() which are available on the WiFi object as documented here.

Put these lines in setup() after wifiManager.autoConnect:

Serial.print("SSID: ");
Serial.println(WiFi.SSID());
Serial.print("psk: ");
Serial.println(WiFi.psk());
answered Aug 6, 2021 at 7:58

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.