// C++ code
//
#include <LiquidCrystal.h>
LiquidCrystal lcd_1(0, 1, 4, 5, 6, 7);
void setup(){
lcd_1.begin(16, 2); // Set up the number of columns and rows on the LCD.
}
void loop(){
lcd_1.setCursor(0, 0);
lcd_1.print("EMBARCATECH!!");
delay(1000); // Wait for 500 millisecond(s)
lcd_1.clear();
delay(1000); // Wait for 500 millisecond(s)
}