Skip to content

Dhananjayaprabath/WiFiProvision

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WiFiProvision

WiFiProvision is a library for WiFi provisioning on ESP32 using a web server in AP mode.

Installation

  1. Download the library as a zip file.
  2. Open the Arduino IDE.
  3. Go to Sketch > Include Library > Add .ZIP Library.
  4. Select the downloaded zip file.

Usage

Here is a basic example of how to use the library:

#include <WiFiProvision.h>

const char* ap_ssid = "ESP32-AP";
const char* ap_password = "password123";
const int buttonPin = 0;

WiFiProvision wifiProvision(ap_ssid, ap_password, buttonPin, 512);

void setup() {
  wifiProvision.begin();
}

void loop() {
  wifiProvision.handleClient();
}

About

WiFiProvision is a simple and efficient library for provisioning WiFi credentials on ESP32 devices. Using Android App

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages