Jump to content
43oh

TI and Temboo partner for IoT


Recommended Posts

So cool! An easy "fix" to side-step Twitter's prevention of duplicate tweets could be to add a timestamp.

 

The "append row" API for google spreadsheets is also a really cool & practical Temboo "choreo". Perfect for datalogging apps!

 

Adrian

@@adrianF, Is this setting on Temboo's side?

Link to post
Share on other sites

While this is pretty neat, it would be really cool if you could do programming from the cloud.

As I understand it the code energia makes are the actual c code and it doesnt use a bootloader to get it on the cc3200, it flashes it directly.

 

If there was a small wifi bootloader instead, that could accept either a new hex file, or wiring code  B)

Link to post
Share on other sites

While this is pretty neat, it would be really cool if you could do programming from the cloud.

As I understand it the code energia makes are the actual c code and it doesnt use a bootloader to get it on the cc3200, it flashes it directly.

 

If there was a small wifi bootloader instead, that could accept either a new hex file, or wiring code  B)

That might be kind've cool, or ......... Kind've scary :)

Link to post
Share on other sites

I did a quick test with the CC3200 Launchpad. Created a twitter "choreo" and ran the auto generated code from Temboo. Result.

Although twitter does not allow the same message to be posted as a duplicate.. errors out. It would be good to pass a string generated in Energia to Temboo's choreo.

 

So far I like it.. It will be awesome to join choreos together.

 

Good question. So far, I would have handled that locally on the LaunchPad, but I believe Temboo offers a few cloud-side things (i.e. filtering XML/JSON outputs from REST calls) before it is finally pushed back to the LaunchPad.

Link to post
Share on other sites

I did a quick test with the CC3200 Launchpad. Created a twitter "choreo" and ran the auto generated code from Temboo. Result.

Although twitter does not allow the same message to be posted as a duplicate.. errors out. It would be good to pass a string generated in Energia to Temboo's choreo.

 

So far I like it.. It will be awesome to join choreos together.

 

 

So cool! An easy "fix" to side-step Twitter's prevention of duplicate tweets could be to add a timestamp.

 

The "append row" API for google spreadsheets is also a really cool & practical Temboo "choreo". Perfect for datalogging apps!

 

Adrian

 

 

Good question. So far, I would have handled that locally on the LaunchPad, but I believe Temboo offers a few cloud-side things (i.e. filtering XML/JSON outputs from REST calls) before it is finally pushed back to the LaunchPad.

From Temboo's support

You can slightly modify the code that is generated on the Twitter Tweets StatusesUpdate to alter successive Tweets. 
 
When you save your inputs into a Profile - only save the AccessToken, AccessTokenSecret, APIKey, and APISecret.  Then when you put in your StatusUpdate value, the code will look something like the following:
 
// Set profile to use for execution
StatusesUpdateChoreo.setProfile("YourSavedProfileName");

// Set Choreo inputs
String StatusUpdateValue = "I'm Tweet number 1";
StatusesUpdateChoreo.addInput("StatusUpdate", StatusUpdateValue);
 
Then you can change the content of the tweet in a number of ways. For example, you can have a value increment in the status
 
// Set profile to use for execution
StatusesUpdateChoreo.setProfile("TwitterTemboTest"); 
int count = 1; 

// Set Choreo inputs
String StatusUpdateValue = "I'm Tweet number " + count++;
StatusesUpdateChoreo.addInput("StatusUpdate", StatusUpdateValue);
Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...