This worked:
...
while(Blynk.connect() == false) {}
//while(!Blynk.connect()) {} **This way round did not work, the effect should be exactly the same though?
bridgeMain.setAuthToken(authMain);
}
...
This worked:
...
while(Blynk.connect() == false) {}
//while(!Blynk.connect()) {} **This way round did not work, the effect should be exactly the same though?
bridgeMain.setAuthToken(authMain);
}
...