Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * LCD code
- * Esha Julka
- *
- */
- #include <LiquidCrystal.h>
- // initialize the library with the numbers of the interface pins
- LiquidCrystal lcd (4, 6, 10, 11, 12, 13);
- void setup() {
- // set up the number of columns and ros on the LCD
- lcd.begin (16,2);
- lcd.setCursor (0,0);
- lcd.print ("EMMA");
- // set the cursor to column o, line 1
- //line 1 is the second row, since counting begins with 0
- lcd.setCursor (1,1) ;
- //print to the second line
- lcd.print ("HOCO - VARUN");
- }
- void loop() {
- // put your main code here, to run repeatedly:
- }
Advertisement
Add Comment
Please, Sign In to add comment