Quote:
Originally Posted by Arhowk
Does anyone know what it is? Other members of my teams made changes to the finalized code but i was using the default distance per pulse and i need to fix my values
e/ nvm its just 1.0
|
The distancePerPulse tells the Encoder object how far the robot travels in a single pulse so you can call the convenience method getDistance() that would return the robot distance traveled. To set the value you need to know the the wheel diameter, the number of encoder counts per revolution, and any transmission ratios that might apply.
Here's the code in WPILib to getDistance():
Code:
public double getDistance() {
return getRaw() * decodingScaleFactor() * m_distancePerPulse;
}
You can see it simply takes the raw number of counts and multiplies it by the distance per pulse that you provide.
Quote:
Originally Posted by Arhowk
2e/ another question: whats the proportinal constant for converting an encoder value to degrees? (i want to turn 45 degrees but i need to know what to scale the encoder to)
|
Do you mean for the robot to turn 45 degrees or are you looking for 45 degrees of shaft rotation?
Brad