ESP32 wifi provisioning

Hi,

Is there an Arduino version of the ESP32 provisioning library? esp-idf/examples/provisioning at master · espressif/esp-idf · GitHub

I would like to use the Ble_Prov example to let customers use a companion app to set the wifi SSID and password. Thanks!

Have you tried to add a "arduino-like" wrapper :

void setup() {
// add standard setup instuctions here such as Serial.begin
  app_main();
}

void loop() {
// The rest of your code
}