Hello again,
Here's another item that doesn't work like it seems it should (to me) ;-). I know I must be missing a simple step somewhere. When this is ran, the LCD just flickers until it passes this part of the code. Shouldn't the gosubs work like this? If I take them out and just use the LCDOUT commands to change cursor position it works fine.
lcdone: LCDOut $fe, 1 : LCDOut $fe, 2 ' Position cursor at home
Return
lcdsec: LCDOut $fe, $C0 ' Move to 2nd line on LCD
Return
GoSub lcdone
LCDOut "1"
GoSub lcdsec
LCDOut "2"
Sleep 2
GoSub lcdone
LCDOut "Warm-Up"
GoSub lcdsec
LCDOut "45 Sec"
Sleep 2
GoSub lcdone
LCDOut "Please"
GoSub lcdsec
LCDOut "Wait..."
Sleep 2
Bookmarks