Everytime, the word “muslim” is tweeted an LED lights up with a buzzer. it is a virtual way of attracting attention that Muslims in real life consistently deal with. The idea is reinforced by the fact that the buzzing and red light is coming from a clear and transparent bag. Demonstrating how muslim lives in America are forced to be transparent. I also have a sort of “sale presentation” power point I made to present in class but unfortunately could no upload here.
Material Used:
-laptop–> Arduino and processing
-LED
-buzzer
-clear tote
-everyday items such as perfume, pen, book ect inside tote
-Paper to display the “sign muslim”
CODE—>
import com.davidrueter.twitter.*;
import twitter4j.*;
import processing.serial.*;
import cc.arduino.*;
TwitterAPI api;
Arduino arduino;
boolean newTweet;
String tweet = “”;
int maxTweet = 5;
int numTweet = 0;
int yValue = 0;
void setup(){
arduino = new Arduino(this, Arduino.list()[0], 57600);
arduino.pinMode(10,Arduino.OUTPUT);
arduino.pinMode(8,Arduino.OUTPUT);
textSize(45);
fullScreen();
println(Arduino.list());
// Modify this line, by changing the “0” to the index of the serial
// port corresponding to your Arduino board (as it appears in the list
// printed by the line above).
//arduino = new Arduino(this, “/dev/tty.usbmodem1411”, 57600);
api = new TwitterAPI(this, “6hM35jyqAUhYc7SPbdTajXGIf”,
“TsATtPOtNAyk9CtUrB0BCtxBO0zCanL4wS9VNkJtjJQ5ZAXvR6”,
“3002261668-L84g5BAHnMYnzNL1fUkUbpUVtcWg97wTZPQJJa5”,
“R4NrWzsrymm4mWs76MRAY0wILGytJEbStLHr17NJjPG5j”);
api.filter(“Muslim”);
background(color(4, 79, 111));
}
void draw(){
if(newTweet){
if(tweet.contains(“Muslim”)){
arduino.digitalWrite(10, Arduino.HIGH); // This makes an LED attached to pin 10 light up
numTweet++;
arduino.digitalWrite(8, Arduino.HIGH); // This makes an buzzer attached to pin 8 light up
if(numTweet >= maxTweet){
background(color(4, 79, 111));
yValue = 0;
numTweet = 0;
}
fill( 255);
text(tweet, 10, yValue, width, yValue+50);
yValue+=100;
delay(1000);
}
}
}
void onStatus(Status status){
tweet = status.getText();
println(tweet);
newTweet = true;
}