[GH-ISSUE #1078] Update keywords.tx to include getWiFiSSID and getWiFiPass #920

Open
opened 2026-02-28 01:27:41 +03:00 by kerem · 1 comment
Owner

Originally created by @W4KRL on GitHub (Jun 11, 2020).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/1078

PLEASE TRY DEVELOPMENT BRANCH before submitting bugs on release or master, in case they were already fixed.

POST SERIAL OUTPUT !

Issues without basic info will be ignored or closed!

Please fill the info fields, it helps to get you faster support ;)

if you have a stack dump decode it:
https://github.com/esp8266/Arduino/blob/master/doc/Troubleshooting/stack_dump.rst

for better debug messages:
https://github.com/esp8266/Arduino/blob/master/doc/Troubleshooting/debugging.rst

----------------------------- Remove above -----------------------------

Basic Infos

Hardware

WiFimanager Branch/Release:

  • [X ] Master
  • [X ] Development

Esp8266/Esp32:

  • [X ] ESP8266
  • [X ] ESP32

Hardware: ESP-12e, esp01, esp25

  • ESP01
  • [X ] ESP12 E/F/S (nodemcu, wemos, feather)
  • Other

ESP Core Version: 2.4.0, staging

  • 2.3.0
  • [X ] 2.4.0
  • staging (master/dev)

Description

keywords.txt has getSSID and getPassword that are not implemented and omits getWiFiSSID and getWiFiPass that are implemented and work very well.

Settings in IDE

Module: NodeMcu, Wemos D1

Additional libraries:

Sketch

#include <WiFiManager.h>              // [manager] v0.15.0 by tzapu https://github.com/tzapu/WiFiManager

String wifiSSID;
String wifiPASS;

WiFiManager myWFM;               // WiFiManager

void setup() {
  wifiSSID = myWFM.getWiFiSSID();
  wifiPASS = myWFM.getWiFiPass();
  Serial.print(wifiSSID); Serial.print("/"); Serial.println(wifiPASS);

}

void loop() {

}

Debug Messages

messages here
Originally created by @W4KRL on GitHub (Jun 11, 2020). Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/1078 ## PLEASE TRY DEVELOPMENT BRANCH before submitting bugs on release or master, in case they were already fixed. ## ## POST SERIAL OUTPUT ! Issues without basic info will be ignored or closed! Please fill the info fields, it helps to get you faster support ;) if you have a stack dump decode it: https://github.com/esp8266/Arduino/blob/master/doc/Troubleshooting/stack_dump.rst for better debug messages: https://github.com/esp8266/Arduino/blob/master/doc/Troubleshooting/debugging.rst ----------------------------- Remove above ----------------------------- ### Basic Infos #### Hardware **WiFimanager Branch/Release:** - [X ] Master - [X ] Development **Esp8266/Esp32:** - [X ] ESP8266 - [X ] ESP32 **Hardware: ESP-12e, esp01, esp25** - [ ] ESP01 - [X ] ESP12 E/F/S (nodemcu, wemos, feather) - [ ] Other **ESP Core Version: 2.4.0, staging** - [ ] 2.3.0 - [X ] 2.4.0 - [ ] staging (master/dev) ### Description keywords.txt has getSSID and getPassword that are not implemented and omits getWiFiSSID and getWiFiPass that are implemented and work very well. ### Settings in IDE Module: NodeMcu, Wemos D1 Additional libraries: ### Sketch ```cpp #include <WiFiManager.h> // [manager] v0.15.0 by tzapu https://github.com/tzapu/WiFiManager String wifiSSID; String wifiPASS; WiFiManager myWFM; // WiFiManager void setup() { wifiSSID = myWFM.getWiFiSSID(); wifiPASS = myWFM.getWiFiPass(); Serial.print(wifiSSID); Serial.print("/"); Serial.println(wifiPASS); } void loop() { } ``` ### Debug Messages ``` messages here ```
Author
Owner

@tablatronix commented on GitHub (Jun 11, 2020):

There are a many more than need to be added

#451

<!-- gh-comment-id:642823829 --> @tablatronix commented on GitHub (Jun 11, 2020): There are a many more than need to be added #451
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/WiFiManager#920
No description provided.