Re: Commands for serial LCD
I use the display often here are some lines from my code.
Code:
Prefix con $FE ' needed before each command
LcdCls CON $51 ' clear LCD (use PAUSE 5 after)
CursorPS con $45 'Cursor Position
Backlight con $53 ' Backlighting 1-8
Contrast con $52 ' Contrast 1-50
SEROUT2 LCD,84, [Prefix,CursorPS,0, "Print Text Here"]
pause 2000
Serout2 LCD, 84, [Prefix,LcdCLS]'Clears screen
Re: Commands for serial LCD
Thank you for the help. The issue was with me doing something I should have known not to do. I was using the internal osc at 8 Mhz to run it. I switched to and EC and everything is fine. I thought because of all the text that was showing up fine that everything was good. Another easy lesson learned the hard way. Thanks again for the help.