#include // LiquidCrystal display with: // rs on pin 12 // rw on pin 11 // enable on pin 10 // d4, d5, d6, d7 on pins 5, 4, 3, 2 LiquidCrystal lcd(12, 11, 2, 7, 8, 9, 10); //////////////////////////Type "lcd.setCursor(0, 0);" to go to line 1. (deafult line) //////////////////////////Type "lcd.setCursor(0, 1);" to go to line 2. void setup() { lcd.begin(2, 16); //sets up the LCD to use 2 lines, each 16 characters long. // Print a message to the LCD. lcd.print("Hello"); lcd.setCursor(0, 1); lcd.print("World"); } void loop() { //Does nothing }