36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
#include <WiFiManager.h> // https://github.com/tzapu/WiFiManager
|
|
WiFiManager wm;
|
|
WiFiManagerParameter custom_mqtt_server("server", "mqtt server", "", 40);
|
|
|
|
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.addParameter(&custom_mqtt_server);
|
|
wm.setConfigPortalBlocking(false);
|
|
wm.setSaveParamsCallback(saveParamsCallback);
|
|
|
|
//automatically connect using saved credentials if they exist
|
|
//If connection fails it starts an access point with the specified name
|
|
if(wm.autoConnect("AutoConnectAP")){
|
|
Serial.println("connected...yeey :)");
|
|
}
|
|
else {
|
|
Serial.println("Configportal running");
|
|
}
|
|
}
|
|
|
|
void loop() {
|
|
wm.process();
|
|
// put your main code here, to run repeatedly:
|
|
}
|
|
|
|
void saveParamsCallback () {
|
|
Serial.println("Get Params:");
|
|
Serial.print(custom_mqtt_server.getID());
|
|
Serial.print(" : ");
|
|
Serial.println(custom_mqtt_server.getValue());
|
|
}
|