-
Notifications
You must be signed in to change notification settings - Fork 8
glcdprintstringln
Anobium edited this page Oct 18, 2020
·
1 revision
Syntax:
GLCDPrintStringLn( String )
Explanation:
Prints string character(s) at a current XY location on the GLCD screen.
Where String
is a String or String variable of the data to display
This command will move to the start of the next line after the string has been displayed
Example:
GLCDPrintStringLn ( "1.First Ln" )
GLCDPrintStringLn ( "2.Second Ln" )
GLCDPrintStringLn ( "" )
GLCDPrintStringLn ( "4.Forth Ln" )
GLCDLocateString( 0, 5 )
GLCDPrintString ( "5." )
GLCDPrintStringLn ( "Fifth Ln" )
GLCDPrintStringLn ( "6.Sixth Ln" )
GLCDLocateString( 0, 3 )
dim val3 as Byte
val3 = 3
GLCDPrintStringLn ( str( val3 ) + ".Third Ln" )