Linked IoT
  • Untitled
  • Languages
  • Linked IoT
    • allgemein
      • bestandteile
        • Sensor-Board-Node
        • Bridge
        • Gateway
      • ueberdasprojekt
        • Problems & challenges
    • dokumentation
      • bibliothek
      • sequenzdiagramm
      • bridge
      • WebInterface
      • Dependencies
      • Terminology:
      • Class diagram
    • Summary
    • tutorials
      • Installing Arduino
      • Installation STM-Board
      • Starting and running the Wifi-Manager
      • Installation und Establishing of ESP
  • Linked IoT
    • dokumentation
      • bridge
      • WebInterface
      • Terminologie:
      • Abhängigkeiten
      • sequenzdiagramm
      • bibliothek
      • Klassendiagramm
    • tutorials
      • Installation STM-Board
      • Wifi-Manager starten und ausführen
      • Installation und Einrichtung von ESP
      • Arduino installieren
    • allgemein
      • bestandteile
        • Bridge
        • Gateway
        • Sensor-Board-Node
      • ueberdasprojekt
        • Probleme & Herausforderungen
    • Summary
Powered by GitBook
On this page
  • Starting the Wifi-Manager
  • First test-program
  1. Linked IoT
  2. tutorials

Starting and running the Wifi-Manager

PreviousInstallation STM-BoardNextInstallation und Establishing of ESP

Last updated 6 years ago

Starting the Wifi-Manager

In order to use the Wifi-Manager, you have to download it under 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)

https://github.com/tzapu/WiFiManager