mirror of
https://github.com/BroncBotz3481/YAGSL
synced 2026-06-19 06:21:40 +00:00
Updated swervelib
This commit is contained in:
39
swervelib/encoders/SwerveAbsoluteEncoder.java
Normal file
39
swervelib/encoders/SwerveAbsoluteEncoder.java
Normal file
@@ -0,0 +1,39 @@
|
||||
package frc.robot.subsystems.swervedrive2.swervelib.encoders;
|
||||
|
||||
/**
|
||||
* Swerve abstraction class to define a standard interface with absolute encoders for swerve modules..
|
||||
*/
|
||||
public abstract class SwerveAbsoluteEncoder
|
||||
{
|
||||
|
||||
/**
|
||||
* Reset the encoder to factory defaults.
|
||||
*/
|
||||
public abstract void factoryDefault();
|
||||
|
||||
/**
|
||||
* Clear sticky faults on the encoder.
|
||||
*/
|
||||
public abstract void clearStickyFaults();
|
||||
|
||||
/**
|
||||
* Configure the absolute encoder to read from [0, 360) per second.
|
||||
*
|
||||
* @param inverted Whether the encoder is inverted.
|
||||
*/
|
||||
public abstract void configure(boolean inverted);
|
||||
|
||||
/**
|
||||
* Get the absolute position of the encoder.
|
||||
*
|
||||
* @return Absolute position in degrees from [0, 360).
|
||||
*/
|
||||
public abstract double getAbsolutePosition();
|
||||
|
||||
/**
|
||||
* Get the instantiated absolute encoder Object.
|
||||
*
|
||||
* @return Absolute encoder object.
|
||||
*/
|
||||
public abstract Object getAbsoluteEncoder();
|
||||
}
|
||||
Reference in New Issue
Block a user