When you and your Arduino do not give a fuck

I can say fuck on the Internet, right?

the wiring is


// fucks.ino: Arduino sketch for automatically running out of fucks to give. Should work on any board, wired to an HD44780 based display or compatible. Does it look like I give a fuck?
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
// rs, enable, d4, d5, d6, d7
// on the lcd end these match to:
// 4, 6, 11, 12, 13, 14
// don't forget the 10k pot between gnd/5v with the wiper on lcd pin 3, ground pin 1, and +5 on pin 2,
// or a completely negative number of fucks will be given. this is undesirable but hilarious.
int fucks;
void setup()
{
fucks=100; // or whatever. watch me give a fuck.
lcd.begin(20,2);
lcd.setCursor(0,0);
lcd.print("Fucks To Give:");
lcd.setCursor(0,1);
lcd.print(fucks);

}

void loop() {
if (fucks>=1) {
lcd.setCursor(0,1);
lcd.print(fucks);
delay(250);
fucks--;
}
if (fucks=0) {
lcd.setCursor(0,0);
lcd.print(" Out Of Fucks ");
lcd.setCursor(0,1);
lcd.print("To Give! Fuck Off.");
delay(30000); // or just go fuck yourself
}
}

I could put up an example picture and video but I am out of fucks to give

One thought on “When you and your Arduino do not give a fuck”

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.