Ok so if I read that right I can store the highbyte & lowbyte A/D value in a word variable (adval) then I can do math on the entire 10 bits of the word?
For example:
Code:ADCIN 0, adval ' Read channel 0 to adval adval=adval *2/10 'do math on 10 bit adval Debug "A/D Value: ",dec adval,10,13 'Send decimal value out
Bookmarks