Quote Originally Posted by turkuaz View Post
Thanks for your help
But ı red all thread last night. My problem is not that how ı can show numbers on LCD.I did that and use it.
My problem is when ı enter number for a variable from keybord ı want to write it to eeprom than ı want to use number for another calculation in program so how can ı write that number and read when it necessery
Thanks alot
getword:
value = 0
for x = 0 to 3
Gosub getkey ' Get a key from the keypad
lcdout I,Line2 + x,#key ' Display ASCII key number
value=Value*10+key
next


WRITE 0 , value.BYTE0 ' SAVE The value (word)
WRITE 1 , value.BYTE1
return