Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/a5huynh/knock-esp32
- Owner: a5huynh
- License: mit
- Created: 2021-04-15T02:05:58.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-05-17T17:24:34.000Z (over 3 years ago)
- Last Synced: 2023-03-10T22:11:32.427Z (almost 2 years ago)
- Topics: arduino-library, ble, esp32, esp32-arduino, wifi
- Language: C++
- Homepage:
- Size: 16.6 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!
}
}
```