public interface SpeedController extends PIDOutput
| Modifier and Type | Method and Description | 
|---|---|
| void | disable()Disable the speed controller. | 
| double | get()Common interface for getting the current set speed of a speed controller. | 
| boolean | getInverted()Common interface for returning if a speed controller is in the inverted state or not. | 
| void | set(double speed)Common interface for setting the speed of a speed controller. | 
| void | setInverted(boolean isInverted)Common interface for inverting direction of a speed controller. | 
| void | stopMotor()Stops motor movement. | 
double get()
void set(double speed)
speed - The speed to set. Value should be between -1.0 and 1.0.void setInverted(boolean isInverted)
isInverted - The state of inversion true is inverted.boolean getInverted()
void disable()
void stopMotor()