ThatOneGuy123
Published © GPL3+

LCD Subscribe to PewDiePie

This project allows you to write subscribe to PewDiePie on an LCD.

BeginnerShowcase (no instructions)523
LCD Subscribe to PewDiePie

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
Standard LCD - 16x2 White on Blue
Adafruit Standard LCD - 16x2 White on Blue
×1
Breadboard (generic)
Breadboard (generic)
×1
Jumper wires (generic)
Jumper wires (generic)
×13
Resistor 220 ohm
Resistor 220 ohm
Optional. Replace it with a jumper wire if you don't have it.
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

Schematic

Code

Subscribe_to_PewDiePie.ino

Arduino
#include <LiquidCrystal.h>

LiquidCrystal lcd(4, 5, 6, 7, 8, 9);

const int V0 = 3;
const int V0val = 115;

void setup() {
  Serial.begin(9600);
  analogWrite(V0, V0val);
  lcd.begin(16, 2);
  lcd.setCursor(2,0);
  lcd.print("Subscribe to");
  lcd.setCursor(4,1);
  lcd.print("PewDiePie");
}

void loop() {}

Credits

ThatOneGuy123

ThatOneGuy123

0 projects • 0 followers

Comments