Final project
"Today, the object is not longer "functional" in the traditional meaning of the word; it no longer serves you, it tests you." -Jean Baudrillard
code:
#include <LiquidCrystal.h>
LiquidCrystal lcd (0,1,8,9,10,11);
void setup() {
// put your setup code here, to run once:
lcd.begin (16,2);
lcd.clear();
}
void loop() {
// put your main code here, to run repeatedly:
lcd.print("who are you?");
delay (3000);
lcd.clear();
lcd.setCursor(0,1);
lcd.print("human?");
delay (1500);
lcd.clear();
lcd.setCursor(0,1);
lcd.print("god?");
delay (1500);
lcd.clear();
lcd.setCursor(0,1);
lcd.print("animal?");
delay (3000);
lcd.clear();
lcd.print("is it");
lcd.setCursor(0,1);
lcd.print("wrong to ask?");
delay(3000);
lcd.clear();
lcd.print("go to hell");
lcd.setCursor(0,1);
lcd.print("for thinking");
delay(3000);
lcd.clear();
lcd.print("i still exist");
lcd.setCursor(0, 1);
lcd.print("i am here");
lcd.clear();
delay(3000);
lcd.print("become nothing");
delay(3000);
lcd.clear();
lcd.print("my soul is ok");
lcd.clear();
delay(3000);
}
Comments
Post a Comment