Since the server went down I have updated blynk to the newest library on particles IDE which is 3.5. I have updated the app itself, but my electron still shows out of network. my serial debug looks like this
I have verified my auth token several times and even refreshed a new one, which also cost me another 1000 energy points to generate a new remote user link. Any help would be much appreciated.
@slimfetz ok. I see in logs your app logins, but no hardware logins. So it make me think something wrong with hardware setup. As temporary solution you may try to put those IP in sketch.
// This #include statement was automatically added by the Particle IDE. #include “blynk/blynk.h”
STARTUP(cellular_credentials_set(“apn.konekt.io”, “”, “”, NULL)); //uncomment for cellular
char auth[] = “xxxxxxxxxx”;
int power_input = C0;
int press_input = D4;
int pump_output = D0;
int press_analog = A0;
int pressure;
int moisture;
int temp;
bool manual_on = false;
bool auto_on = false;
unsigned long start;
unsigned long start5;
unsigned long start10;
unsigned long start20;
unsigned long start30;
unsigned long timeroll = 5000;
Ok Dave, as a troubleshooting step I hooked up a particle sim card and different electron and I have the same result. Device not in network. the serial says invalid auth token
I used a photon with the same code and just changed pins so that the code would work and the app will connect using wifi. It is definitely a problem only involving cellular.