We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
added a function to ESP8266WifiAP.cpp for retrieving the stored softAP SSID
#include <Arduino.h> #include <ESP8266WiFi.h> void setup() { Serial.begin(115200); Serial.print("softAP SSID: "); Serial.print(WiFi.softAPSSID()); } void loop() { }
String ESP8266WiFiAPClass::softAPSSID() { struct softap_config config; String ssid = ""; if (wifi_softap_get_config(&config)) ssid = reinterpret_cast<char*>(config.ssid); return ssid; }
String softAPSSID();
The text was updated successfully, but these errors were encountered:
Already implemented and reviewed in #4138 .
Sorry, something went wrong.
#4138 is merged. I guess this issue can close?
Yes, thank you.
devyte
No branches or pull requests
Hi,
added a function to ESP8266WifiAP.cpp for retrieving the stored softAP SSID
Sketch
Add to ESP8266WifiAP.cpp
Add to ESP8266WifiAP.h
String softAPSSID();
The text was updated successfully, but these errors were encountered: