This program will send an update to twitter if someone comes too close to the arduino trying to take it or if you put it on the door, and if someone enters your room etc as the title says.
Please vote for this in the Adafruit-Make-It-Tweet contest--->>>
HERE
First of all here are the programs you need:
Arduino(http://arduino.cc/en/Main/Software)
Processing(http://processing.org/download/)
And the items needed are:
Arduino
A distance sensor
A buzzer
A serial cable ( or blue-tooth transceiver if you want the thing to be wireless)
(http://cgi.ebay.com/Serial-Bluetooth-RF-Transceiver-Module-rs232-backplane-/170628681891?pt=AU_B_I_Electrical_Test_Equipment&hash=item27ba4310a3)
Open your arduino and write a code for your program, what my program did was it kept recording distance sensor values and if the values were less than 15 then it posted a twitter update and activated the buzzer.(Make sure you say serial.println("Person too close")only when the values are less than 15 as whatever you print via serial will be posted on twitter).
Then open up your processing window and type this code in
/*************
* based on: http://processing.org/reference/libraries/serial/serialEvent_.html
*************/
import processing.serial.*;
Serial myPort; // The serial port
PFont myFont; // The display font
String inString; // Input string from serial port
int lf = 10; // ASCII linefeed
Twitter twitter; // Twitter
//Going to get oAuth working instead of this, but this will do for now
String username = "YOUR-TWITTER-USERNAME"; // you Twitter Username Here
String password = "YOUR-TWITTER-PASSWORD"; // your Twitter Password Here
void setup() {
size(400,200);
twitter = new Twitter(username,password);
myFont = loadFont("AppleGothic-48.vlw");
textFont(myFont, 18);
println(Serial.list());
myPort = new Serial(this, Serial.list()[0], 9600);
myPort.bufferUntil(lf); //wiat for line feed to specify end of serial buffer
}
void draw() {
background(100);
text("color selected: " + inString, 10,50);
}
void serialEvent(Serial p) {
inString = p.readString();//read serial string
//For some reason this only wanted to work in a try catch
try
{
Status status1 = twitter.updateStatus("Arduino's favorite color is "+inString);//update twitter status
}
catch( TwitterException e) {
println(e.getStatusCode());
}
}
Make sure you change USERNAME and PASSWORD with your twitter accounts username and password.
Make sure that you only use serial.println command on whatever you want to post on twitter.
OR USE THIS CODE IF YOU WANT TO POST TO AN APPLICATION ON TWITTER
// This is where you enter your Oauth info
static String OAuthConsumerKey = "";
static String OAuthConsumerSecret = "";
// This is where you enter your Access Token info
static String AccessToken = "";
static String AccessTokenSecret = "";
// Just some random variables kicking around
String myTimeline;
java.util.List statuses = null;
User[] friends;
Twitter twitter = new TwitterFactory().getInstance();
RequestToken requestToken;
String[] theSearchTweets = new String[11];
void setup() {
size(100,100);
background(0);
connectTwitter();
sendTweet("Hey from Simple Processing woop woop #RobotGrrl");
}
void draw() {
background(0);
}
// Initial connection
void connectTwitter() {
twitter.setOAuthConsumer(OAuthConsumerKey, OAuthConsumerSecret);
AccessToken accessToken = loadAccessToken();
twitter.setOAuthAccessToken(accessToken);
}
// Sending a tweet
void sendTweet(String t) {
try {
Status status = twitter.updateStatus(t);
println("Successfully updated the status to [" + status.getText() + "].");
} catch(TwitterException e) {
println("Send tweet: " + e + " Status code: " + e.getStatusCode());
}
}
// Loading up the access token
private static AccessToken loadAccessToken(){
return new AccessToken(AccessToken, AccessTokenSecret);
}
// Get your tweets
void getTimeline() {
try {
statuses = twitter.getUserTimeline();
} catch(TwitterException e) {
println("Get timeline: " + e + " Status code: " + e.getStatusCode());
}
for(int i=0; i
println(status.getUser().getName() + ": " + status.getText());
}
}
// Search for tweets
void getSearchTweets() {
String queryStr = "@RobotGrrl";
try {
Query query = new Query(queryStr);
query.setRpp(10); // Get 10 of the 100 search results
QueryResult result = twitter.search(query);
ArrayList tweets = (ArrayList) result.getTweets();
for (int i=0; i
String user = t.getFromUser();
String msg = t.getText();
Date d = t.getCreatedAt();
theSearchTweets[i] = msg.substring(queryStr.length()+1);
println(theSearchTweets[i]);
}
} catch (TwitterException e) {
println("Search tweets: " + e);
}
}
and change token and secret in the top with your applications secret and token...
Then download Twitter4j and drag all the files ending with .jar into the processing sketch that is opened.
As you add files the processing window will say 1 file added or 5 files added or 2 files added etc.
And then you are done just run the processing code and make sure the arduino is powered and your touch me not twitter updater is ready.If you want any details on any step please ask me for them and I will try my best to help.
The buzzer is a really small buzzer and might not be noticeable in any of the pictures.
Another alternative if you do not have a distance sensor is by using a laser pointer and a photo cell, all you need to do is hook up the photo cell to a PNP transistor, and make sure that the laser pointer is pointing at the photo cell, and as someone enters, then laser is cut and the buzzer goes on.
If you want to laser protect more doors, then just add mirrors so that the laser pointer goes all the way from one door to another until the photo cell, and if anyone enters any of the doors, your alarm system goes on.
I'm not really making a step by step instructable as this is just brief info about my Touch Me Not program and how to make your own.
Please comment, rate and subscribe

































Visit Our Store »
Go Pro Today »




for(int i=0; i Status status = (Status)statuses.get(i);
says: Syntax error, maybe missing a semicolon?
expecting SEMI, found "Status"
Because the processing works but what I need now it for it to read when the arduino prints.
Cannot instantiate the type twiiter
one of the guys in comments faced the sme prob do u know how to fx it?
im using twiiter4J V2.2.6
if i need to use an older version do u know where i can get it? could ya give me alink?
But the arduino is soooo popular that everone has one and most of the ppl these days have a pc, mac or linux .... so ....
And in the ethernet sheild version, you do not connect it directly to the router... :O
You cannect the sheild on the arduino, and then connect the arduino to the pc, not to the router :) !
Maybe try downloading a different version of twitter4j (An earlier, stable version preferably) and then check if it works, if not then...reply to this comment and I will try and figure it out...
If you will look at it, thank you in advance :)
http://forum.processing.org/topic/twitter4j-problem-cannot-instantiate-type-twitter
http://forum.processing.org/topic/twitter4j-v-2-2-x-experience
Check if these instructions might help you better out with the ible :)
http://tinkerlondon.com/now/2010/09/14/oauth-twitter-and-processing/
...hope these help :)
I found on this site:
http://forum.processing.org/topic/twitter4j-problem-cannot-instantiate-type-twitter an download link to twitter4j 2.5.0 I tried that and that works :D
means that twitter4j 2.5.5 don't work...
again thank you! ;)
But with the application code, I only can send the tweet: "Hey from Simple Processing woop woop #RobotGrrl"
and I can not find something in that code to read the serial.
Sorry, but I am really a noob with Processing ;)
Maybe a little more detail of the problem?
And why isn't the first one working... :(
How about you download and install both versions and open one version for the first code and the second version for the second code :)
I downloaded Processing 1.2.1 and twitter4j 2.2.0, on the first code I still get the error: "Cannot instantiate the type Twitter" even when I did all steps.
The second code works, but what I mean was: When I start the program, it only says the text: "Hey from Simple Processing woop woop #RobotGrrl" on twitter, but I could not find something in the code to read out the serial. Maybe I understand the use for that code completely wrong. ;)
What version of twitter4j and Processing did you use?
Probably the main reason is because you are using a mac because for the ible you are expected to be doing this on a pc...but now there are a lot more websites and ibles that have come up on this concept and maybe there are some mac ones that you can use :)
Thank you for your support :)
I found it here on page
http://www.scribd.com/doc/56008880/Programming-Documentation
Download twitter4j2.1.3, I know it worked for the guy in the report.
I've battled everywhere on the net for this issue. I tried using twitter4j-2.2.0, twitter4j-3.0.0-SNAPSHOT, and also twitter4j-2.2.6
Does anyone have the download file twitter4j-2.1.3.zip
vishalapr can you please send me your Twitter4j file.
PLEASE I REALLY NEED. my email is varuninnz@gmail.com
it still gives me an error, saying the gothic font could not be found. make sure that it is in the data folder of the sketch folder.
I dont know where to find the gothic font. So i loaded myFont = loadFont("LucidaTypewriterRegular.ttf"); and placed the LucidaTypewriterRegular.ttf file in my datafolder, but it still could not load anything.
If anyone knows anything about this, then please let me know...
it works. thank you for the tutorial
As you add files the processing window will say 1 file added or 5 files added or 2 files added etc."
I download the file twitter4j-2.2.3, but there are many files, could be more specific?
But you need to give voice recognized command to the thing to turn it on!!
Its really cool, I found it in a toy I broke last week