Yes I do have a wire goping to ground, Pin 1 on the LCD and Vcc, pin 2 on the lCD, There re 16 pin on the lcd and no idea which one is the incoming.. My pic16F84a is program to output on pin 6.
main:
pause 1000 ' wait for the LCD to startup
serout PortB.0,0,[$FE,$01] ' clear the screen
serout PortB.0,0,["Wherever you go"] ' send string “Wherever you go”
serout PortB.0,0,[$FE,$C0] ' move the cursor to the 2nd line
serout PortB.0,0,[" there you are "] ' send string “ there you are ”
pause 1000 ' pause for a second
goto main ' loop