I am trying to write to a serial LCD using this sample code
start:
pause 1000
serout p4, n9600, “Hello World”]
pause 200
It is displaying some strange characters.
I am trying to write to a serial LCD using this sample code
start:
pause 1000
serout p4, n9600, “Hello World”]
pause 200
It is displaying some strange characters.
If you’re sure the baud rate is correct for your device try changing the n to an i for inverted. If that’s not it, then reply with the following info…
Which IDE?
Which serial LCD?
Any specs for the display…
Is working. I just use i form inverted
start:
pause 2000 ’ allow to stabilize
serout p4, i9600,"?G126"] ’ configure LCD geometry
pause 200 ’ pause to allow LCD EEPROM to program
serout p4, i9600,"?f"] ’ clear the LCD
serout p4, i9600,“Hello World?n”] ’ note new line
pause 200
goto start ’ repeat