Hi guys can anyone please guide me on how to print the words in the lcd, i tried to print it but it doesnt work my code below and a screen shot of my board.
#include<LiquidCrystal.h>
LiquidCrystal lcd(13, 12, 11, 10, 9, 8 );
void setup() {
lcd.begin(16, 2);
lcd.print("hello, world!");
lcd.setCursor(0, 1);
}
void loop() {
}
Below is the wiring from lcd to Arduino:
LCD :
RS, E, D4, D5, D6, D7, VSS , VO, K, VDD, A
Arduino:
13, 12, 11, 10, 9, 8, GND, GND, GND, 5V, 5V
Arduino pin for 2,3 is adafruit fingerprint, 6,7 is for led. (this is for later implementation, now im trying to printout the lcd words first)





