2013-12-15 18:30:16 -05:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2016-01-02 03:02:34 -08:00
|
|
|
/* Copyright (c) FIRST 2008-2016. All Rights Reserved. */
|
|
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
2013-12-15 18:30:16 -05:00
|
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
2016-01-02 03:02:34 -08:00
|
|
|
/* the project. */
|
2013-12-15 18:30:16 -05:00
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
package edu.wpi.first.wpilibj;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Interface for speed controlling devices.
|
|
|
|
|
*/
|
|
|
|
|
public interface SpeedController extends PIDOutput {
|
|
|
|
|
|
2015-06-25 15:07:55 -04:00
|
|
|
/**
|
|
|
|
|
* Common interface for getting the current set speed of a speed controller.
|
|
|
|
|
*
|
|
|
|
|
* @return The current set speed. Value is between -1.0 and 1.0.
|
|
|
|
|
*/
|
|
|
|
|
double get();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Common interface for setting the speed of a speed controller.
|
|
|
|
|
*
|
|
|
|
|
* @param speed The speed to set. Value should be between -1.0 and 1.0.
|
|
|
|
|
* @param syncGroup The update group to add this Set() to, pending
|
|
|
|
|
* UpdateSyncGroup(). If 0, update immediately.
|
|
|
|
|
*/
|
|
|
|
|
void set(double speed, byte syncGroup);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Common interface for setting the speed of a speed controller.
|
|
|
|
|
*
|
|
|
|
|
* @param speed The speed to set. Value should be between -1.0 and 1.0.
|
|
|
|
|
*/
|
|
|
|
|
void set(double speed);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Common interface for inverting direction of a speed controller.
|
|
|
|
|
*
|
|
|
|
|
* @param isInverted The state of inversion true is inverted.
|
|
|
|
|
*/
|
|
|
|
|
void setInverted(boolean isInverted);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Common interface for returning if a speed controller is in the inverted
|
|
|
|
|
* state or not.
|
|
|
|
|
*$
|
|
|
|
|
* @return isInverted The state of the inversion true is inverted.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
boolean getInverted();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Disable the speed controller
|
|
|
|
|
*/
|
|
|
|
|
void disable();
|
2013-12-15 18:30:16 -05:00
|
|
|
}
|