Trying to get a Particle linked up to send data to ubidots.
Keep getting the following error:
test_app.cpp:1:21: fatal error: Ubidots.h: No such file or directory
#include "Ubidots.h"
Here is the code im using:
#include "Ubidots.h"
#define TOKEN "f1Aj0t7mavCJh6M0FPL4XpVC8ru9rI" // Put here your Ubidots TOKEN
#define DATASOURCE_NAME "TEST_SOURCE" // Put here your Ubidots datasource name
Ubidots ubidots(TOKEN, DATASOURCE_NAME);
void setup(){
Serial.begin(115200);
}
void loop(){
float A0 = analogRead(A0);
float A1 = analogRead(A1);
ubidots.add("HUMIDITY", A0);
ubidots.add("TEMP", A1);
ubidots.sendAll();
delay(1000);
}