// Import the Liquid Crystal library
#include <LiquidCrystal.h>;
//Initialise the LCD with the arduino. LiquidCrystal(rs, enable, d1, d2, d3, d4)
LiquidCrystal lcd(12, 11, 7, 6, 5, 4);
void setup() {
// Switch on the LCD screen
lcd.begin(16, 2);
// Print these words to my LCD screen
lcd.print("HELLO WORLD!");
}
void loop() {
// put your main code here, to run repeatedly:
}