andriyadi / ESP32WiFiProvMgr

Convenient reusable C++ ESP-IDF component for WiFi Provisioning

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ESP32 WiFi Provisioning Manager

Convenient reusable C++ ESP-IDF component that wraps wifi_provisioning component, that enables WiFi provisioning over WiFi. Usage example is shown in main/main.cpp.

For now, it's still optimized only for provisioning over WiFi/SoftAP. The code for provisioning over BLE is there, I haven't tested it yet.

In this example, the sdkconfig.defaults file sets the CONFIG_EVENT_LOOP_PROFILING option. This enables both event loop profiling that will list out all registered events.

How to use example

Hardware Required

Any ESP32 family development board.

Apps Required

Unless you're developing your own app, it's faster to use existing "official" app from Espressif in order to quickly test the provisioning.

If you do need to integrate provisioning functionity into your own app, get the library here:

Configure the project

idf.py menuconfig

Build and Flash

idf.py -p PORT flash monitor

(Replace PORT with the name of the serial port.)

(To exit the serial monitor, type Ctrl-].)

See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.

Example Output

...
I (1154) WIFIPROV: Resetting provisioning...
I (1264) WIFIPROV: Starting provisioning
I (1284) phy_init: phy_version 4670,719f9f6,Feb 18 2021,17:07:07
D (1394) WIFIPROV: >> Station started
D (1404) WIFIPROV: >> Unhandled event: WIFI_EVENT/12
D (1404) WIFIPROV: >> Unhandled event: WIFI_EVENT/13
W (1404) wifi_prov_scheme_softap: Error adding mDNS service! Check if mDNS is running
D (1404) WIFIPROV: >> Unhandled event: WIFI_EVENT/12
I (1414) wifi_prov_mgr: Provisioning started with service name : Feeder_001 
I (1424) WIFIPROV: >> Provisioning started
I (1424) WIFIPROV: Scan this QR code from the provisioning application for Provisioning.
I (1434) QRCODE: Encoding below text with ECC LVL 0 & QR Code Version 10
I (1444) QRCODE: {"ver":"v1","name":"DeviceName_001","pop":"abcd1234","transport":"softap"}
                                      
  █▀▀▀▀▀█ ▀▀▀█▄▀█ ▀▀▄▄█▀  ▀ █▀▀▀▀▀█   
  █ ███ █  ▀▄█ █▄▀ ▄▄▀████  █ ███ █   
  █ ▀▀▀ █  ▄▀█▀█  █▀▄▀▄▀██▄ █ ▀▀▀ █   
  ▀▀▀▀▀▀▀ █▄▀ █▄█▄▀ █ █ ▀▄█ ▀▀▀▀▀▀▀   
  ▀▀▄▀▀ ▀ ▄▀▄ ▀ ▄█ ▀▀█  ▀▄  ▀▄▄ ▄▄▀   
  ▄▄▄█▀ ▀▄▄▀  ▀▀▀█▀▄▀▄▀▀ █ █  ▄█▄█▀   
   ▄▄▄▄▀▀▄███ ▄▄ ▄█ ▀▀▀ ▀█▀▄▀█ ▀▄▄▀   
  ▀ █▄  ▀▀▀█▀ ▄  ▀█ ▄▀█ █ ▀▄▄█  ▄     
  █ ▄▀▀▀▀█ ▀██▀█ █▀▄█▄█▄▄▀▀ ███▄ ██   
  ▄ █   ▀▄▀▀█▄▀▄ █  █▀█▀ ▀ █▀▀ ▀▄▄▀   
  █▄▄█▀ ▀▀ ▄ ▀█ ██ ███▄ █▄▀█ ▀▄ ▄▀    
  █ █▀▄▄▀█▄▄▄█ ▀ █ █▄▄▀ ▄█  ▄█ ▀▄▄█   
  ▀▀    ▀ ▄▀█▄ ▄ ▄█ █ ▄ ▄▀█▀▀▀█▄▄▀    
  █▀▀▀▀▀█  ▄▄▄█▀█▀▄▀██▄▀███ ▀ █ ▄     
  █ ███ █ █▀█▀█▀ █ ▄ ▄▀▄██▀▀▀▀▀▄▄▀▀   
  █ ▀▀▀ █ ▄ █▀██▀█▀▀▄██ ▄ ██▄▀█ █▄█   
  ▀▀▀▀▀▀▀ ▀     ▀▀ ▀ ▀▀  ▀▀▀▀▀▀       
                                      

I (1654) WIFIPROV: If QR code is not visible, copy paste the below URL in a browser.
https://espressif.github.io/esp-jumpstart/qrcode.html?data={"ver":"v1","name":"DeviceName_001","pop":"abcd1234","transport":"softap"}

Upon successful provisioning, you'll see this output:

D (30024) WIFIPROV: >> Station connected
D (31594) WIFIPROV: >> Station got IP: 192.168.31.51
I (31594) esp_netif_handlers: sta ip: 192.168.31.51, mask: 255.255.255.0, gw: 192.168.31.1
I (31594) wifi_prov_mgr: STA Got IP
I (31594) APP: >> Provisioning got IP: 192.168.31.51
I (31604) APP: >> Yay... Provisioning success!
I (31614) APP: All is good!
D (33424) WIFIPROV: >> Unhandled event: WIFI_EVENT/15
D (33424) WIFIPROV: >> Unhandled event: WIFI_EVENT/13
I (33434) wifi_prov_mgr: Provisioning stopped
I (33434) WIFIPROV: >> Provisioning ended

As you can see, ESP32 gets the IP address.

About

Convenient reusable C++ ESP-IDF component for WiFi Provisioning

License:MIT License


Languages

Language:C++ 98.3%Language:CMake 1.7%