Files
YAGSL/swervelib/encoders/PWMDutyCycleEncoderSwerve.java
2023-09-01 00:21:16 -05:00

86 lines
1.7 KiB
Java

package swervelib.encoders;
import edu.wpi.first.wpilibj.DutyCycleEncoder;
/**
* DutyCycle encoders such as "US Digital MA3 with PWM Output, the CTRE Mag Encoder, the Rev Hex Encoder, and the AM Mag
* Encoder." attached via a PWM lane.
* <p>
* Credits to
* <a href="https://github.com/p2reneker25/2035-YAGSL/blob/main/swervelib/encoders/PWMDutyCycleEncoderSwerve.java">
* p2reneker25</a> for building this.
*/
public class PWMDutyCycleEncoderSwerve extends SwerveAbsoluteEncoder
{
/**
* Duty Cycle Encoder.
*/
private final DutyCycleEncoder encoder;
/**
* Inversion state.
*/
private boolean isInverted;
/**
* Constructor for the PWM duty cycle encoder.
*
* @param pin PWM lane for the encoder.
*/
public PWMDutyCycleEncoderSwerve(int pin)
{
encoder = new DutyCycleEncoder(pin);
}
/**
* Configure the inversion state of the encoder.
*
* @param inverted Whether the encoder is inverted.
*/
@Override
public void configure(boolean inverted)
{
isInverted = inverted;
}
/**
* Get the absolute position of the encoder.
*
* @return Absolute position in degrees from [0, 360).
*/
@Override
public double getAbsolutePosition()
{
return (isInverted ? -1.0 : 1.0) * encoder.getAbsolutePosition() * 360;
}
/**
* Get the encoder object.
*
* @return {@link DutyCycleEncoder} from the class.
*/
@Override
public Object getAbsoluteEncoder()
{
return encoder;
}
/**
* Reset the encoder to factory defaults.
*/
@Override
public void factoryDefault()
{
// Do nothing
}
/**
* Clear sticky faults on the encoder.
*/
@Override
public void clearStickyFaults()
{
// Do nothing
}
}