1#include <LiquidCrystal.h>
2
3// Initializing with your exact wiring sequence
4LiquidCrystal lcd(7, 8, 9, 10, 11, 12);
5
6void setup() {
7 // Set up the LCD's number of columns and rows:
8 lcd.begin(16, 2);
9}
10
11void loop() {
12 // 1. "I miss you :( comes here"
13 lcd.clear();
14 lcd.setCursor(0, 0);
15 lcd.print("I miss you :(");
16 lcd.setCursor(0, 1);
17 lcd.print("comes here");
18 delay(5000);
19
20 // 2. "and oh!"
21 lcd.clear();
22 lcd.setCursor(0, 0);
23 lcd.print("and");
24 lcd.setCursor(0, 1);
25 lcd.print(" oh!");
26 delay(5000);
27
28 // 3. "it's hard to see you"
29 lcd.clear();
30 lcd.setCursor(0, 0);
31 lcd.print("it's hard to");
32 lcd.setCursor(0, 1);
33 lcd.print("see you");
34 delay(5000);
35
36 // 4. "but i wish you were right here"
37 lcd.clear();
38 lcd.setCursor(0, 0);
39 lcd.print("but i wish you");
40 lcd.setCursor(0, 1);
41 lcd.print("were right here");
42 delay(5000);
43
44 // 5. "Oh! its hard to leave you"
45 lcd.clear();
46 lcd.setCursor(0, 0);
47 lcd.print("Oh! its hard to");
48 lcd.setCursor(0, 1);
49 lcd.print("leave you");
50 delay(5000);
51
52 // 6. "when i get you everwehre"
53 lcd.clear();
54 lcd.setCursor(0, 0);
55 lcd.print("when i get you");
56 lcd.setCursor(0, 1);
57 lcd.print("everwehre");
58 delay(5000);
59
60 // 7. "all this time I'm thinking"
61 lcd.clear();
62 lcd.setCursor(0, 0);
63 lcd.print("all this time");
64 lcd.setCursor(0, 1);
65 lcd.print("I'm thinking");
66 delay(5000);
67
68 // 8. "I'm strong enough"
69 lcd.clear();
70 lcd.setCursor(0, 0);
71 lcd.print("I'm strong");
72 lcd.setCursor(0, 1);
73 lcd.print("enough");
74 delay(5000);
75
76 // 9. "to sink in"
77 lcd.clear();
78 lcd.setCursor(0, 0);
79 lcd.print("to sink in");
80 delay(5000);
81
82 // 10. "oh no! I don't need you"
83 lcd.clear();
84 lcd.setCursor(0, 0);
85 lcd.print("oh no! I don't");
86 lcd.setCursor(0, 1);
87 lcd.print("need you");
88 delay(5000);
89
90 // 11. "but i miss you comere here :("
91 lcd.clear();
92 lcd.setCursor(0, 0);
93 lcd.print("but i miss you");
94 lcd.setCursor(0, 1);
95 lcd.print("comere here :(");
96 delay(5000);
97
98 // 12. leave the screen blank
99 lcd.clear();
100 delay(5000);
101}