...
lcd.setCursor(1,4);
...
You are trying to set the cursor to the fifth row of your two row display.
Try using lcd.setCursor(4,1);.
Don
...
lcd.setCursor(1,4);
...
You are trying to set the cursor to the fifth row of your two row display.
Try using lcd.setCursor(4,1);.
Don