[solved] run Blynk after wifimanager

I’m trying to set up the wifi for Blynk with wifimanager, so far i’m able to get in the blynk code using the exambles posted. but wifimanager on restart just uses the last known wifi credentials. how can I get these values so that after wifimanager has does its thing and it falls to blynk. i can have something like this

Blynk.begin(blynk_token, espstored_ssid, espstored_pass)

or is there a way to run

Blynk.begin(blynk_token);

i seen this in the examples but it was for ethernet connection, and when i try it i get an error that blynkwifi:: wont except blynk token alone.

Blynk.config(blynk_token);
Blynk.connect();
3 Likes

worked perfectly, thanks so much