Serial LCD code?
Archiver
Posts: 46,084
Can someone help me out with some code for the bs2e.· I bought a serial lcd and can display text messages fine but can't figure out how to display some data like a variable or a byte of information
Comments
>serial lcd and can display text messages fine but can't figure out
>how to display some data like a variable or a byte of information
Hi Ricky
x var word
x=1234
serout 0,$54,[noparse][[/noparse]"hello, x= ",dec x]
the manual tells how to format data in the serout command.
-- Tracy
> >Can someone help me out with some code for the bs2e. I bought a
> >serial lcd and can display text messages fine but can't figure out
> >how to display some data like a variable or a byte of information
>
> Hi Ricky
>
> x var word
> x=1234
> serout 0,$54,[noparse][[/noparse]"hello, x= ",dec x]
>
> the manual tells how to format data in the serout command.
>
> -- Tracy
Thanks Tracy!