updated temboo examples
This commit is contained in:
parent
0bad92cb21
commit
e1f6e4b424
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
GetYahooWeatherReport
|
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
|
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
|
This example assumes basic familiarity with Arduino sketches, and that your Yun is connected
|
||||||
to the Internet.
|
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.
|
This example code is in the public domain.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
ReadATweet
|
ReadATweet
|
||||||
|
|
||||||
Demonstrates retrieving the most recent Tweet from a user's home timeline
|
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
|
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
|
This example assumes basic familiarity with Arduino sketches, and that your Yun
|
||||||
is connected to the Internet.
|
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.
|
This example code is in the public domain.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
SendATweet
|
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
|
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
|
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
|
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
|
read+write permissions. After creating the app, you'll find OAuth credentials
|
||||||
for that application under the "OAuth Tool" tab.
|
for that application under the "OAuth Tool" tab. Substitute these values for
|
||||||
Substitute these values for the placeholders below.
|
the placeholders below.
|
||||||
|
|
||||||
This example assumes basic familiarity with Arduino sketches, and that your Yun is connected
|
This example assumes basic familiarity with Arduino sketches, and that your Yun is connected
|
||||||
to the Internet.
|
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.
|
This example code is in the public domain.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
SendAnEmail
|
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
|
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
|
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
|
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
|
This example assumes basic familiarity with Arduino sketches, and that your Yun is connected
|
||||||
to the Internet.
|
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.
|
This example code is in the public domain.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
SendAnSMS
|
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
|
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
|
This example assumes basic familiarity with Arduino sketches, and that your Yun is connected
|
||||||
to the Internet.
|
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.
|
This example code is in the public domain.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
/*
|
/*
|
||||||
SendDataToGoogleSpreadsheet
|
SendDataToGoogleSpreadsheet
|
||||||
|
|
||||||
Demonstrates appending a row of data to a Google spreadsheet from the Arduino Yun
|
Demonstrates appending a row of data to a Google spreadsheet using Temboo from an Arduino Yun.
|
||||||
using the Temboo Arduino Yun SDK.
|
|
||||||
|
|
||||||
Check out the latest Arduino & Temboo examples and support docs at http://www.temboo.com/arduino
|
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
|
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.
|
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.
|
This example code is in the public domain.
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
ToxicFacilitiesSearch
|
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
|
This example retrieves the names and addresses of EPA-regulated facilities in the
|
||||||
Toxins Release Inventory (TRI) database within a given zip code.
|
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
|
This example assumes basic familiarity with Arduino sketches, and that your Yun is connected
|
||||||
to the Internet.
|
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.
|
This example code is in the public domain.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
UpdateFacebookStatus
|
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
|
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
|
This example assumes basic familiarity with Arduino sketches, and that your Yun
|
||||||
is connected to the Internet.
|
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.
|
This example code is in the public domain.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
UploadToDropbox
|
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
|
Check out the latest Arduino & Temboo examples and support docs at http://www.temboo.com/arduino
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
This example assumes basic familiarity with Arduino sketches, and that your Yun is connected
|
This example assumes basic familiarity with Arduino sketches, and that your Yun is connected
|
||||||
to the Internet.
|
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.
|
This example code is in the public domain.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue