Display a song on an LCD
1. Put in this code BEFORE the void setup
Read moreThis project goes into more detail and how you could make you own chorus!
0. To start in case you don't have this installed, install the library: LiquidCrystal_I2C//pre setup
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2);
2. Put in this IN the void setuplcd.init();
lcd.init();
lcd.backlight();
3. Edit to the lyrics and put this code in the void loop //put in the song chorus here if you want to make a full song then put the code in the setup
lcd.setCursor(0,0);
lcd.print("Song line"); //up to 16 characters in one lcd.print
lcd.setCursor(0,1);
lcd.print("Song line");
delay(2250);
lcd.clear();
4. Final code! \/Pretty simple eh'? Let me know what song chorus I should make!
Comments