SOLVED: Using custom wifi management and connectivity with blynk

Hi all, I have an existing ESP device with all custom wifi management management and connection already being handled in my code. I now want to add blynk for automation and the blynk all. Looking at the xample codes, they need the Blynk.Begin to include wifi SSID and password:
Blynk.begin(auth, ssid, pass);

Is there a way to connect to blynk but leave the wifi management to other libraries? Something like this, assuming wifi connectivity?
Blynk.begin(auth);

Yes:

Blynk.config(auth);

And then:

Blynk.connect();

Then run:

Blynk.run();

in your void loop()

See here:

1 Like

Ah perfect thankyou.
I was focusing on the wrong function.

1 Like