diff options
author | Cristian Maglie <c.maglie@bug.st> | 2013-06-05 14:51:15 +0200 |
---|---|---|
committer | Cristian Maglie <c.maglie@bug.st> | 2013-06-05 14:51:15 +0200 |
commit | 48a4f76e4271567a7c7649c507668e23345190c3 (patch) | |
tree | baa90058912d9140b916e2451d8afacf2bb0b49d /libraries/Bridge/examples/XivelyClient | |
parent | 4306561e25f2a57c5f86f6cde22a1d306101487f (diff) |
Updated some Bridge examples
Diffstat (limited to 'libraries/Bridge/examples/XivelyClient')
-rw-r--r-- | libraries/Bridge/examples/XivelyClient/XivelyClient.ino | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/Bridge/examples/XivelyClient/XivelyClient.ino b/libraries/Bridge/examples/XivelyClient/XivelyClient.ino index 67079de..48b1403 100644 --- a/libraries/Bridge/examples/XivelyClient/XivelyClient.ino +++ b/libraries/Bridge/examples/XivelyClient/XivelyClient.ino @@ -38,7 +38,7 @@ void setup() { while(!Console); // wait for Network Console to open Console.println("Xively client"); - // Do a first update immediatly + // Do a first update immediately updateData(); sendData(); lastRequest = millis(); @@ -80,7 +80,7 @@ void sendData() { // Send the HTTP PUT request // Is better to declare the Process here, so when the - // sendData function finishes the resources are immediatly + // sendData function finishes the resources are immediately // released. Declaring it global works too, BTW. Process xively; Console.print("\n\nSending data... "); |