// LCD1602 to Ardunio Uno connection example
#include < liquidCrystal.h >
liquidcrystal Icd (13,12,11,10,9,8)
}
void setup()() {
Icd . begin(16,2);
// you can now interact with the LCD,e.g.;
Icd .print('HELLO WORLD');
}
void loop(){
//...
}