Stamp Works Source files zip
jknightandkarr
Posts: 234
in BASIC Stamp
Is the source code zip file still available for the Stamp Works txt?? I need SW21-EX11-LCD_Demo.BSP and so far I haven't found that code in the Stamp Works book. Thanks.
Joe
Joe

Comments
Joe
In other programs I added the values you see above to LcdDDRam which would give you $80 for LcdLine1, and $C0 for LcdLine2.
Joe
con CLS = $01 ' clear the LCD CRSR_HM = $02 ' move cursor home CRSR_LF = $10 ' move cursor left CRSR_RT = $14 ' move cursor right CGRAM = $40 ' character ram DDRAM = $80 ' display ram LINE0 = DDRAM | $00 ' cursor positions for col 0 LINE1 = DDRAM | $40 LINE2 = DDRAM | $14 LINE3 = DDRAM | $54 #0, CRSR_NONE, CRSR_ULINE, CRSR_BLINK, CRSR_UBLNK ' cursor typesYou'll also note that I refer to lines 0 to 3, instead of 1 to 4. This makes the numbering consistent with column numbering (which is also zero-indexed).Joe