// include the library code: #include // initialize the library with the numbers of the interface pins LiquidCrystal lcd(12, 11, 5, 4, 3, 2); void setup() { // set up the LCD's number of columns and rows: lcd.begin(8, 2); //is 16x1, adressed as 8x2 lcd.setCursor(0,1); //init right hand side lcd.home(); //back to start lcd.clear(); // Print a message to the LCD. lcd.print("hello,"); //print left side lcd.setCursor(0,1); //go to right lcd.print("aitendo"); //print right side //blinking cursor lcd.cursor(); lcd.blink(); } void loop() { }