Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/a5huynh/knock-esp32

ESP32 WiFi provisioning over BLE
https://github.com/a5huynh/knock-esp32

arduino-library ble esp32 esp32-arduino wifi

Last synced: 3 months ago
JSON representation

ESP32 WiFi provisioning over BLE

Awesome Lists containing this project

README

        

# knock-esp32

A library to easily handle WiFi configuration over BLE. Requires an iOS / Android
application that has BLE to send the details over.

Here is a bare bones example:
``` cpp
#include "knock.h"

void setup() {
// This is the name that shows up to the iOS application
Knock.init("Fancy Pants Detector");
}

void loop() {
if (Knock.has_wifi_connection()) {
// do your fun stuff here!
}
}
```