8000 GitHub - a5huynh/knock-esp32: ESP32 WiFi provisioning over BLE
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

a5huynh/knock-esp32

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

#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!
    }
}
0