Devices & Components
Arduino Uno Rev3
16x2 LCD display with I²C interface
Male/Female Jumper Wires
Project description
Code
Da final code
c_cpp
Yes yes if you copy make sure to respect
1//made by vanze 2//Song chorus editor lcd 3 4//pre setup 5#include <Wire.h> 6#include <LiquidCrystal_I2C.h> 7 8LiquidCrystal_I2C lcd(0x27,16,2); 9void setup() { 10 // put your setup code here, to run once: 11lcd.init(); 12lcd.init(); 13lcd.backlight(); 14 15} 16 17void loop() { 18 //put in the song chorus here if you want to make a full song then put the code in the setup 19 lcd.setCursor(0,0); 20 lcd.print("Song line"); //up to 16 characters in one lcd.print 21 lcd.setCursor(0,1); 22 lcd.print("Song line"); 23 delay(2250); 24 lcd.clear(); 25 26}
Downloadable files
Circuit Diagram
Made with tinkercad!
Circuit Diagram

Comments
Only logged in users can leave comments