// Using the "hd44780" library
// https://github.com/duinoWitchery/hd44780
//
//
#include <hd44780.h>
#include <hd44780ioClass/hd44780_pinIO.h>
// LCD pins for RS,E,DB4,DB5,DB6,DB7
// Hooked to Arduino digital pins 4,5,6,7,8,9
hd44780_pinIO lcd(4,5,6,7,8,9);
void setup()
{
// The LCD has two rows of 16 characters each
lcd.begin(16, 2);
lcd.clear();
}
void loop()
{
lcd.setCursor(0, 0); // (column,row) with 0,0 is upper-left corner
lcd.print("Hello");
lcd.setCursor(0, 1); // lower text line is row 1
lcd.print("world!");
delay(10000);
}