mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 00:55:52 +03:00
[GH-ISSUE #1212] Get SSID AND PASSWORD FROM CONFIG PORTAL #1034
Labels
No labels
📶 WiFi
🕸️ HTTP
Branch
DEV Help Wanted
Discussion
Documentation
ESP32
Example
Good First Issue
Hotfix
In Progress
Incomplete
Needs Feeback
Priority
QA
Question
Task
Upstream/Dependancy
bug
duplicate
enhancement
invalid
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/WiFiManager#1034
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @shakirhussain78652 on GitHub (Feb 11, 2021).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/1212
Hello, I am new here and don't have much knowledge about programming.
I want to use the auto connect non-blocking code for my project and for that I will be needing the SSID and PASSWORD entered by the user from config portal into my remotexy project.
#define REMOTEXY_WIFI_SSID "Redmi" // these should be fetch from the config portal
#define REMOTEXY_WIFI_PASSWORD "123456789" // these should be fetch from the config portal
#define REMOTEXY_CLOUD_SERVER "cloud.remotexy.com"
below is the autocoonect non blocking code that i will be using


#include <WiFiManager.h> // https://github.com/tzapu/WiFiManager
WiFiManager wm;
void setup() {
WiFi.mode(WIFI_STA); // explicitly set mode, esp defaults to STA+AP
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
wm.process();
// put your main code here, to run repeatedly:
}
@sn00zerman commented on GitHub (Feb 11, 2021):
If you want to read the SSID and password, after you made a succesfull connection in the Captive Portal,
you simple need to read out:
WiFi.SSID() //this contains the SSID
WiFi.psk() //this contains the password
@shakirhussain78652 commented on GitHub (Feb 13, 2021):
Thank you so much for your help. That saved my day.
@shakirhussain78652 commented on GitHub (Feb 13, 2021):
Also please help me to enter these
WiFi.SSID() //this contains the SSID
WiFi.psk() //this contains the password
into this code
#define REMOTEXY_WIFI_SSID ""
#define REMOTEXY_WIFI_PASSWORD ""
#define REMOTEXY_CLOUD_SERVER "cloud.remotexy.com"
#define REMOTEXY_CLOUD_PORT 6376
#define REMOTEXY_CLOUD_TOKEN "479a49b065595afa5cdd3e7a3f8a66f0"