reaper7 wrote:I think that this is good option for You:
https://github.com/tzapu/WiFiManagerCode: Select all#include <WiFiClient.h>
#include <EEPROM.h>
#include <ESP8266mDNS.h>
#include <WifiManager.h>
WiFiManager wifi(0);
void setup() {
Serial.begin(115200);
delay(10);
Serial.println("INIT");
wifi.autoConnect("AP_FOR_CONF");
Serial.println("DONE");
}
void loop() {
}
Thank you. I need something like that too. But I dont have the file WifiManager.h some I cant compile. I couldn't find how to add it. How should I add the WifiManager.h file?
GG