You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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);
//reset settings - wipe credentials for testing
//wm.resetSettings();
wm.setConfigPortalBlocking(false);
//automatically connect using saved credentials if they exist
//If connection fails it starts an access point with the specified name
if(wm.autoConnect("BLUE1", "12345678")){
Serial.println("connected...yeey :)");
}
else {
Serial.println("Configportal running");
}
}
void loop() {
wm.process();
// put your main code here, to run repeatedly:
}
The text was updated successfully, but these errors were encountered:
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
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:
}
The text was updated successfully, but these errors were encountered: