#include <LiquidCrystal.h> // 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, 10, 5, 4, 3, 2); void setup() { lcd.begin(2,16); lcd.clear(); int i,t; for(i=16;i>0;i--) { lcd.setCursor(0,0); for(t=0;t<i;t++) lcd.print(" "); lcd.print("Welcome to Vmax"); // display 1st line delay(300); } lcd.setCursor(1,1); lcd.print("Are you ready? "); // display 2nd line } void loop() { }