Hello Ubidots community!
I’ve had an electron and 2 RPi’s running for quite a while now with particle firmware connected to Ubidots.
Now all of the sudden, the data they send via sendAll stopped being stored in ubidots.
If i use a particle webhook to ubidots, it works just fine.
I litterally changed nothing in the code, it just stopped working.
Is this an issue that i have alone or is it a ubidots problem that i can’t fix myself?
I’ve minimized the code i’m running to this:
#include <Ubidots.h>
#define TOKEN "secret_token" // Put here your Ubidots TOKEN
Ubidots ubidots(TOKEN);
void setup() {
}
void loop() {
ubidots.add("value", 1);
ubidots.sendAll();
delay(5000);
}
I know there are plenty threads like this, but this is a problem that came from nothing, so non of the other threads are very helpful.
If it works again after the weekend i will close the thread, but i need to use the ubidots for a presentation next week, so this is very much a pressing matter.
Thanks in advance,
Michael