Hello, you need to use DEC command, for example:
b0 var byte
b0=100
loop:
LCDOut $fe, 1
LCDOut "LCD TEST" 'Display line1
LCDOut $fe, $c0 'Move to line 2
LCDOut Dec b0 'Display b0 on LCD
Pause 500 'Wait .5 second
goto loop
end
Hello, you need to use DEC command, for example:
b0 var byte
b0=100
loop:
LCDOut $fe, 1
LCDOut "LCD TEST" 'Display line1
LCDOut $fe, $c0 'Move to line 2
LCDOut Dec b0 'Display b0 on LCD
Pause 500 'Wait .5 second
goto loop
end
Bookmarks