Skip to content

QuickAPConnect is a lightweight library that makes it easy to set up an ESP32 as a WiFi Access Point and host basic HTML, CSS, and JavaScript content directly from the board. With only a few lines of code, you can create your own standalone wireless network for projects that need a simple web interface.

License

Notifications You must be signed in to change notification settings

jaikulk14/QuickAPConnect

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

QuickAPConnect

QuickAPConnect makes it easy to turn your ESP32 into a WiFi Access Point and serve basic HTML, CSS, and JavaScript content – all with minimal setup.

Features

  • One-line setup to create an Access Point
  • Easy integration with ESP32 boards
  • Minimal boilerplate – plug-and-play use
  • Serve basic HTML/CSS/JS from the ESP32

Example

#include <QuickAPConnect.h>

void setup() {
  Serial.begin(115200);
  QuickAPConnect.begin("MyESP32AP", "mypassword");
}

void loop() {
  QuickAPConnect.loop();
}

About

QuickAPConnect is a lightweight library that makes it easy to set up an ESP32 as a WiFi Access Point and host basic HTML, CSS, and JavaScript content directly from the board. With only a few lines of code, you can create your own standalone wireless network for projects that need a simple web interface.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages