diff options
author | Tom Igoe <tom.igoe@gmail.com> | 2013-06-25 10:42:30 -0400 |
---|---|---|
committer | Tom Igoe <tom.igoe@gmail.com> | 2013-06-25 10:42:30 -0400 |
commit | 84235ba3bfc1a534ed7c13712bee408c1aca9cd4 (patch) | |
tree | cc91288a5ba72c9ccce55b911273ce7fef011d56 /libraries/Bridge/examples/XivelyClient/XivelyClient.ino | |
parent | 3c70cff3ee0a9e506e1f16124653b13b774902cc (diff) |
Updated XivelyClient to use Serial instead of Console
Diffstat (limited to 'libraries/Bridge/examples/XivelyClient/XivelyClient.ino')
-rw-r--r-- | libraries/Bridge/examples/XivelyClient/XivelyClient.ino | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libraries/Bridge/examples/XivelyClient/XivelyClient.ino b/libraries/Bridge/examples/XivelyClient/XivelyClient.ino index 48b1403..69f979c 100644 --- a/libraries/Bridge/examples/XivelyClient/XivelyClient.ino +++ b/libraries/Bridge/examples/XivelyClient/XivelyClient.ino @@ -33,10 +33,10 @@ String dataString = ""; void setup() { // start serial port: Bridge.begin(); - Console.begin(); + Serial.begin(9600); - while(!Console); // wait for Network Console to open - Console.println("Xively client"); + while(!Serial); // wait for Network Serial to open + Serial.println("Xively client"); // Do a first update immediately updateData(); @@ -83,7 +83,7 @@ void sendData() { // sendData function finishes the resources are immediately // released. Declaring it global works too, BTW. Process xively; - Console.print("\n\nSending data... "); + Serial.print("\n\nSending data... "); xively.begin("curl"); xively.addParameter("-k"); xively.addParameter("--request"); @@ -94,13 +94,13 @@ void sendData() { xively.addParameter(apiString); xively.addParameter(url); xively.run(); - Console.println("done!"); + Serial.println("done!"); // If there's incoming data from the net connection, - // send it out the Console: + // send it out the Serial: while (xively.available()>0) { char c = xively.read(); - Console.write(c); + Serial.write(c); } } |