//include library code:
#include <LiquidCrystal.h>
//initialize library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);//depends connection
void setup()
{
// set up LCD's number columns and rows:
lcd.begin(16, 2);
//Print a message to LCD.
lcd.print("BRUUUHHHHHHHHHHH");
}
void loop()
{ //set cursor to column 0, line 1
// Line 1 is second row, counting begin with 0
lcd.setCursor(0, 1);
//print number of seconds since reset:
lcd.print(millis()/1000);
}