#include <LiquidCrystal_74HC595.h>
LiquidCrystal_74HC595 lcd(2,4,3,2,3,4,5,6,7);
void setup() {
// put your setup code here, to run once:
lcd.begin(20,4);
lcd.print("Hello, World!");
}
void loop() {
// put your main code here, to run repeatedly:
}