Quote:
Originally Posted by Tom Bottiglieri
Use the Talon SRX in speed control mode. The update rate and onboard filtering is better than anything you'll be able to get in code running on the crio.
|
What if he decides to use a roboRIO?
Also: Is there a way to use the roboRIO's PID class or make a custom PID class that can do speed control?*
*Could you just use a generic PID controller and use the following piece of code? (As ratdude747 implied)
Code:
if(Motor_Speed<0){
Motor_Speed = 0;
}