View Single Post
  #3   Spotlight this post!  
Unread 10-03-2007, 05:24
UnderDark's Avatar
UnderDark UnderDark is offline
Alumni
AKA: Matthew Korzeniowski
FRC #0862 (Lightning Robotics)
Team Role: Alumni
 
Join Date: Mar 2006
Rookie Year: 2004
Location: Canton, Michigan
Posts: 14
UnderDark will become famous soon enough
Re: Encoder Help with VEX and MPLAB

The VEX encoders send a binary string. You should only increment distance when the latest value is different from the previous value.

Code:
unsigned int distance = 0;
char encOld = 0;
.
.
.
if((char)rc_dig_int1 != encOld)
   distance++;
encOld = rc_dig_int1;
__________________
"My gaming is FIRST!"
-Joe Jagadics

"I am like an all powerful warloard"
-Brian Graham