tweet

tweet(msg)

Parameters

msg the twitter message

Description

Send a tweet to your Twitter account. You must first enable your Twitter account to allow Synthiam ARC to post on your behave. The instructions can be found here: Twitter - Options Menu - Using ARC - Support - Synthiam

Example

// Simply tweet a string
Utility.tweet("This is a generic message from your robot");

// Tweet when the camera begins tracking.
// Something like this would be put in the Camera On Tracking script.
if (GetVar("$CameraIsTracking"))
  Utility.tweet("The camera detected an object");