1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-04-05 21:40:24 +02:00

Updated XivelyClient. Still not working

This commit is contained in:
tigoe 2013-05-30 23:09:57 -04:00
parent a181cf715a
commit 9bdc89699a

View File

@ -25,11 +25,7 @@
#define APIKEY "foo" // replace your pachube api key here #define APIKEY "foo" // replace your pachube api key here
#define FEEDID 0000 // replace your feed ID #define FEEDID 0000 // replace your feed ID
#define USERAGENT "my-project" // user agent is the project name #define USERAGENT "my-project" // user agent is the project name
*/
char ssid[] = "networkname"; // your network SSID (name)
char pass[] = "password"; // your network password
*/
// set up net client info: // set up net client info:
@ -44,12 +40,13 @@ void setup() {
Serial.begin(9600); Serial.begin(9600);
Bridge.begin(); Bridge.begin();
delay(2000); delay(2000);
while(!Serial); // wait for Serial Monitor to open while(!Serial); // wait for Serial Monitor to open
Serial.println("Xively client"); Serial.println("Xively client");
// reserve space for dataString: // reserve space for dataString:
dataString.reserve(100); dataString.reserve(100);
sendData();
} }
void loop() { void loop() {
@ -64,9 +61,8 @@ void loop() {
dataString += random(5) + 100; dataString += random(5) + 100;
// if there's incoming data from the net connection, // if there's incoming data from the net connection,
// send it out the serial port. This is for debugging // send it out the serial port:
// purposes only: if (xively.available()>0) {
while (xively.available()>0) {
char c = xively.read(); char c = xively.read();
Serial.write(c); Serial.write(c);
} }
@ -83,7 +79,6 @@ void loop() {
// this method makes a HTTP connection to the server: // this method makes a HTTP connection to the server:
void sendData() { void sendData() {
Serial.println("Sending data"); Serial.println("Sending data");
xively.begin("curl");
dataString = "--data \'" + dataString; dataString = "--data \'" + dataString;
dataString += "\'"; dataString += "\'";
@ -93,12 +88,13 @@ void sendData() {
apiString += "\""; apiString += "\"";
// form the string for the URL parameter: // form the string for the URL parameter:
String url = " https://api.xively.com/v2/feeds/"; String url = " \"https://api.xively.com/v2/feeds/";
url += FEEDID; url += FEEDID;
url += ".csv"; url += ".csv\"";
// send the HTTP PUT request: // send the HTTP PUT request:
xively.addParameter(" -k"); xively.begin("curl");
xively.addParameter("-k");
xively.addParameter("--request PUT"); xively.addParameter("--request PUT");
xively.addParameter(dataString); xively.addParameter(dataString);
xively.addParameter(apiString); xively.addParameter(apiString);
@ -108,3 +104,9 @@ void sendData() {