Check the datasheet. You might notice something wrong here!Code:with 10K pot set to RA1. ADCIN 0, D
This next tip might make it a bit easier for you in the future. Using DEC vs. using # keeps the length of the decimal output to the LCD (the number of characters sent) constant, regardless if it's zero (one character) or 9999 (4 characters).
That way you don't see 1000, when you actually want to see 0001.
LCDOUT $FE,$C0, "Chase Speed " ,DEC4 D
Bookmarks