Glad to hear the display works... just need to fix the content now
All numbers are stored internally as HEX. Try using DEC instead.
BIN, DEC and HEX modifiers are used to output an ASCII representation of the number.
eg, myVar = 65
LCDout myVar displays "A"
LCDout DEC myVar displays "65"
LCDout HEX myVar displays "41"
LCDout BIN myVar displays "1000001" (leading zeros not displayed unless you specify how many bits to show)
Bookmarks