ldijkman / Improv-WiFi-Library

Improv WiFi library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Improv WiFi Library

Improv is a free and open standard with ready-made SDKs that offer a great user experience to configure Wi-Fi on devices. More details here.

This library provides an easier way to handle the Improv serial protocol in your firmware, allowing you to configure the WiFi via web browser as in the following example.

Simplest use example:

#include <ImprovWiFiLibrary.h>

ImprovWiFi improvSerial(&Serial);

void setup() {
  improvSerial.setDeviceInfo(ImprovTypes::ChipFamily::CF_ESP32, "My-Device-9a4c2b", "2.1.5", "My Device");
}

void loop() { 
  improvSerial.handleSerial();
}

Documentation

The full library documentation can be seen in docs/ folder.

License

This open source code is licensed under the MIT license (see LICENSE for details).

About

Improv WiFi library

License:MIT License


Languages

Language:C++ 98.6%Language:CMake 1.4%