Starting and running the Wifi-Manager
Starting the Wifi-Manager
In order to use the Wifi-Manager, you have to download it under https://github.com/tzapu/WiFiManager first.
The following website is shown:

After downloading the zip-file „WiFiManager-master.zip“ you have to open Arduino.
To use the library, you have to import it under Sketch --> Include Library --> Add .ZIP Library...

First test-program
In order to test the Wifi-Manager, a new Arduino-file has to be opened (File --> New or via shortcut CTRL + N)
The first test-program includes a setup-function and a loop
#include <WiFiManager.h>
void setup() {
WiFiManager wifiManager;
wifiManager.autoConnect();
}
void loop(){}

To upload the program, you have to click the button with arrow (marked red)

After the upload was successful you will get to see the message "Upload successful" in the lower part of the window (marked red in the lower picture)

Last updated