mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-27 02:01:42 +00:00
Years update, references to WIND_BASE were removed, and WPILib license was moved to the root directory of the project. If there was already a comment block, a year range through 2016 was created using the first year in the comment. If there was no comment block, a block with just the year 2016 was added. Comments were not added to files from external sources (NI, CTRE). Change-Id: Iff4f098ab908b90b8d929902dea903de2f596acc
61 lines
1.7 KiB
Java
61 lines
1.7 KiB
Java
/*----------------------------------------------------------------------------*/
|
|
/* Copyright (c) FIRST 2008-2016. All Rights Reserved. */
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
/* the project. */
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
package edu.wpi.first.wpilibj;
|
|
|
|
/**
|
|
* Interface for speed controlling devices.
|
|
*/
|
|
public interface SpeedController extends PIDOutput {
|
|
|
|
/**
|
|
* 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();
|
|
}
|