Code:
SEROUT 1, 396, [85] ' Auto Connect to display at 9600 Baud
' Can be up to 256,000 Baud
SEROUT 1, 396, [186] ' Clears the screen
SEROUT 1, 396, [188,10,20] ' Position cursor at x10, y20 for text display
SEROUT 1, 396, ["Hello World",0] ' Print "Hello World", 0 terminates string
SEROUT 1, 396, [255,3,63,31,25,255] ' Draw a circle at x63, y31
' Radius of circle is 25 pixels
' 255 at beginning and end signifies graphics
' "3" is for circle
SEROUT 1, 396, [255,2,20,10,100,50,255] ' Draw a rectangle from x20,y10 to x100,y50
' "2" is for rectangle
SEROUT 1, 396, [255,4,30,0,30,60,255] ' Draw a vertical line from x30,y0 to x30,y60
' "4" is for line
SEROUT 1, 396, [170,185] ' Set brightness level to 185 (from 0-255)
' "170" is command to set backlight brightness
' Value stored in EEPROM
Bookmarks