From f149dac5a71e7e77bfbf6ba54f5517007dd5c909 Mon Sep 17 00:00:00 2001 From: Federico Fissore Date: Thu, 11 Jul 2013 11:24:53 +0200 Subject: [PATCH] updated temboo examples --- .../GetYahooWeatherReport/GetYahooWeatherReport.ino | 4 ++-- .../Bridge/examples/Temboo/ReadATweet/ReadATweet.ino | 5 +++-- .../Bridge/examples/Temboo/SendATweet/SendATweet.ino | 9 +++++---- .../Bridge/examples/Temboo/SendAnEmail/SendAnEmail.ino | 6 +++--- .../Bridge/examples/Temboo/SendAnSMS/SendAnSMS.ino | 4 ++-- .../SendDataToGoogleSpreadsheet.ino | 5 ++--- .../ToxicFacilitiesSearch/ToxicFacilitiesSearch.ino | 4 ++-- .../Temboo/UpdateFacebookStatus/UpdateFacebookStatus.ino | 5 +++-- .../examples/Temboo/UploadToDropbox/UploadToDropbox.ino | 6 +++--- 9 files changed, 25 insertions(+), 23 deletions(-) diff --git a/hardware/arduino/avr/libraries/Bridge/examples/Temboo/GetYahooWeatherReport/GetYahooWeatherReport.ino b/hardware/arduino/avr/libraries/Bridge/examples/Temboo/GetYahooWeatherReport/GetYahooWeatherReport.ino index 9d218f7e0..669aba5c1 100644 --- a/hardware/arduino/avr/libraries/Bridge/examples/Temboo/GetYahooWeatherReport/GetYahooWeatherReport.ino +++ b/hardware/arduino/avr/libraries/Bridge/examples/Temboo/GetYahooWeatherReport/GetYahooWeatherReport.ino @@ -1,7 +1,7 @@ /* GetYahooWeatherReport - Demonstrates making a request to the Yahoo! Weather API using the Temboo Arduino Yun SDK. + Demonstrates making a request to the Yahoo! Weather API using Temboo from an Arduino Yun. Check out the latest Arduino & Temboo examples and support docs at http://www.temboo.com/arduino @@ -12,7 +12,7 @@ This example assumes basic familiarity with Arduino sketches, and that your Yun is connected to the Internet. - Looking for another API? We've got over 100 in our Library! + Looking for another API to use with your Arduino Yun? We've got over 100 in our Library! This example code is in the public domain. */ diff --git a/hardware/arduino/avr/libraries/Bridge/examples/Temboo/ReadATweet/ReadATweet.ino b/hardware/arduino/avr/libraries/Bridge/examples/Temboo/ReadATweet/ReadATweet.ino index 1f93661b1..b2edd1f4b 100644 --- a/hardware/arduino/avr/libraries/Bridge/examples/Temboo/ReadATweet/ReadATweet.ino +++ b/hardware/arduino/avr/libraries/Bridge/examples/Temboo/ReadATweet/ReadATweet.ino @@ -2,7 +2,7 @@ ReadATweet Demonstrates retrieving the most recent Tweet from a user's home timeline - using the Temboo Arduino Yun SDK. + using Temboo from an Arduino Yun. Check out the latest Arduino & Temboo examples and support docs at http://www.temboo.com/arduino @@ -18,7 +18,8 @@ This example assumes basic familiarity with Arduino sketches, and that your Yun is connected to the Internet. - Looking for social APIs? We've got Facebook, Google+, Instagram, Tumblr and more. + Want to use another social API with your Arduino Yun? We've got Facebook, + Google+, Instagram, Tumblr and more in our Library! This example code is in the public domain. */ diff --git a/hardware/arduino/avr/libraries/Bridge/examples/Temboo/SendATweet/SendATweet.ino b/hardware/arduino/avr/libraries/Bridge/examples/Temboo/SendATweet/SendATweet.ino index 5a530b3d6..2e34a82ff 100644 --- a/hardware/arduino/avr/libraries/Bridge/examples/Temboo/SendATweet/SendATweet.ino +++ b/hardware/arduino/avr/libraries/Bridge/examples/Temboo/SendATweet/SendATweet.ino @@ -1,7 +1,7 @@ /* SendATweet - Demonstrates sending a tweet via a Twitter account using the Temboo Arduino Yun SDK. + Demonstrates sending a tweet via a Twitter account using Temboo from an Arduino Yun. Check out the latest Arduino & Temboo examples and support docs at http://www.temboo.com/arduino @@ -13,13 +13,14 @@ the Twitter dev console at https://dev.twitter.com. Note that since this sketch creates a new tweet, your application will need to be configured with read+write permissions. After creating the app, you'll find OAuth credentials - for that application under the "OAuth Tool" tab. - Substitute these values for the placeholders below. + for that application under the "OAuth Tool" tab. Substitute these values for + the placeholders below. This example assumes basic familiarity with Arduino sketches, and that your Yun is connected to the Internet. - Looking for social APIs? We've got Facebook, Google+, Instagram, Tumblr and more. + Want to use another social API with your Arduino Yun? We've got Facebook, + Google+, Instagram, Tumblr and more in our Library! This example code is in the public domain. */ diff --git a/hardware/arduino/avr/libraries/Bridge/examples/Temboo/SendAnEmail/SendAnEmail.ino b/hardware/arduino/avr/libraries/Bridge/examples/Temboo/SendAnEmail/SendAnEmail.ino index ad51340b1..a1cabcef9 100644 --- a/hardware/arduino/avr/libraries/Bridge/examples/Temboo/SendAnEmail/SendAnEmail.ino +++ b/hardware/arduino/avr/libraries/Bridge/examples/Temboo/SendAnEmail/SendAnEmail.ino @@ -1,7 +1,7 @@ /* SendAnEmail - Demonstrates sending an email via a Google Gmail account using the Temboo Arduino Yun SDK. + Demonstrates sending an email via a Google Gmail account using Temboo from an Arduino Yun. Check out the latest Arduino & Temboo examples and support docs at http://www.temboo.com/arduino @@ -11,12 +11,12 @@ Since this sketch uses Gmail to send the email, you'll also need a valid Google Gmail account. The sketch needs the username and password you use - to log into your Gmail account: substitute the placeholders below for these values. + to log into your Gmail account - substitute the placeholders below for these values. This example assumes basic familiarity with Arduino sketches, and that your Yun is connected to the Internet. - Looking for another API? We've got over 100 in our Library! + Looking for another API to use with your Arduino Yun? We've got over 100 in our Library! This example code is in the public domain. */ diff --git a/hardware/arduino/avr/libraries/Bridge/examples/Temboo/SendAnSMS/SendAnSMS.ino b/hardware/arduino/avr/libraries/Bridge/examples/Temboo/SendAnSMS/SendAnSMS.ino index e4d0ec916..04c827ee9 100644 --- a/hardware/arduino/avr/libraries/Bridge/examples/Temboo/SendAnSMS/SendAnSMS.ino +++ b/hardware/arduino/avr/libraries/Bridge/examples/Temboo/SendAnSMS/SendAnSMS.ino @@ -1,7 +1,7 @@ /* SendAnSMS - Demonstrates sending an SMS via a Twilio account using the Temboo Arduino Yun SDK. + Demonstrates sending an SMS via Twilio using Temboo from an Arduino Yun. Check out the latest Arduino & Temboo examples and support docs at http://www.temboo.com/arduino @@ -25,7 +25,7 @@ This example assumes basic familiarity with Arduino sketches, and that your Yun is connected to the Internet. - Looking for another API? We've got over 100 in our Library! + Looking for another API to use with your Arduino Yun? We've got over 100 in our Library! This example code is in the public domain. */ diff --git a/hardware/arduino/avr/libraries/Bridge/examples/Temboo/SendDataToGoogleSpreadsheet/SendDataToGoogleSpreadsheet.ino b/hardware/arduino/avr/libraries/Bridge/examples/Temboo/SendDataToGoogleSpreadsheet/SendDataToGoogleSpreadsheet.ino index efa121998..1f1b6b4b3 100644 --- a/hardware/arduino/avr/libraries/Bridge/examples/Temboo/SendDataToGoogleSpreadsheet/SendDataToGoogleSpreadsheet.ino +++ b/hardware/arduino/avr/libraries/Bridge/examples/Temboo/SendDataToGoogleSpreadsheet/SendDataToGoogleSpreadsheet.ino @@ -1,8 +1,7 @@ /* SendDataToGoogleSpreadsheet - Demonstrates appending a row of data to a Google spreadsheet from the Arduino Yun - using the Temboo Arduino Yun SDK. + Demonstrates appending a row of data to a Google spreadsheet using Temboo from an Arduino Yun. Check out the latest Arduino & Temboo examples and support docs at http://www.temboo.com/arduino @@ -30,7 +29,7 @@ NOTE that the first time you run this sketch, you may receive a warning from Google, prompting you to authorize access from a 3rd party system. - Looking for another API? We've got over 100 in our Library! + Looking for another API to use with your Arduino Yun? We've got over 100 in our Library! This example code is in the public domain. diff --git a/hardware/arduino/avr/libraries/Bridge/examples/Temboo/ToxicFacilitiesSearch/ToxicFacilitiesSearch.ino b/hardware/arduino/avr/libraries/Bridge/examples/Temboo/ToxicFacilitiesSearch/ToxicFacilitiesSearch.ino index 8539b531e..3b7f1d1aa 100644 --- a/hardware/arduino/avr/libraries/Bridge/examples/Temboo/ToxicFacilitiesSearch/ToxicFacilitiesSearch.ino +++ b/hardware/arduino/avr/libraries/Bridge/examples/Temboo/ToxicFacilitiesSearch/ToxicFacilitiesSearch.ino @@ -1,7 +1,7 @@ /* ToxicFacilitiesSearch - Demonstrates making a request to the Envirofacts API using the Temboo Arduino Yun SDK. + Demonstrates making a request to the Envirofacts API using Temboo from an Arduino Yun. This example retrieves the names and addresses of EPA-regulated facilities in the Toxins Release Inventory (TRI) database within a given zip code. @@ -14,7 +14,7 @@ This example assumes basic familiarity with Arduino sketches, and that your Yun is connected to the Internet. - Looking for another API? We've got over 100 in our Library! + Looking for another API to use with your Arduino Yun? We've got over 100 in our Library! This example code is in the public domain. */ diff --git a/hardware/arduino/avr/libraries/Bridge/examples/Temboo/UpdateFacebookStatus/UpdateFacebookStatus.ino b/hardware/arduino/avr/libraries/Bridge/examples/Temboo/UpdateFacebookStatus/UpdateFacebookStatus.ino index a52583e32..dd8cabd73 100644 --- a/hardware/arduino/avr/libraries/Bridge/examples/Temboo/UpdateFacebookStatus/UpdateFacebookStatus.ino +++ b/hardware/arduino/avr/libraries/Bridge/examples/Temboo/UpdateFacebookStatus/UpdateFacebookStatus.ino @@ -1,7 +1,7 @@ /* UpdateFacebookStatus - Demonstrates sending a Facebook status update using the Temboo Arduino Yun SDK. + Demonstrates sending a Facebook status update using Temboo from an Arduino Yun. Check out the latest Arduino & Temboo examples and support docs at http://www.temboo.com/arduino @@ -18,7 +18,8 @@ This example assumes basic familiarity with Arduino sketches, and that your Yun is connected to the Internet. - Looking for social APIs? We've got Twitter, Google+, Instagram, Tumblr and more. + Want to use another social API with your Arduino Yun? We've got Twitter, Google+, + Instagram, Tumblr and more in our Library! This example code is in the public domain. */ diff --git a/hardware/arduino/avr/libraries/Bridge/examples/Temboo/UploadToDropbox/UploadToDropbox.ino b/hardware/arduino/avr/libraries/Bridge/examples/Temboo/UploadToDropbox/UploadToDropbox.ino index caecbe12e..744dcdb5e 100644 --- a/hardware/arduino/avr/libraries/Bridge/examples/Temboo/UploadToDropbox/UploadToDropbox.ino +++ b/hardware/arduino/avr/libraries/Bridge/examples/Temboo/UploadToDropbox/UploadToDropbox.ino @@ -1,8 +1,8 @@ /* UploadToDropbox - Demonstrates uploading a file to Dropbox using the Temboo Arduino Yun SDK. - + Demonstrates uploading a file to a Dropbox account using Temboo from an Arduino Yun. + Check out the latest Arduino & Temboo examples and support docs at http://www.temboo.com/arduino A Temboo account and application key are necessary to run all Temboo examples. @@ -24,7 +24,7 @@ This example assumes basic familiarity with Arduino sketches, and that your Yun is connected to the Internet. - Looking for another API? We've got over 100 in our Library! + Looking for another API to use with your Arduino Yun? We've got over 100 in our Library! This example code is in the public domain. */