mirror of
https://github.com/BroncBotz3481/YAGSL
synced 2026-06-19 06:21:40 +00:00
Updated docs, renamed SwerveDrive lock function and setBrake function
This commit is contained in:
83
swervelib/imu/ADIS16470Swerve.java
Normal file
83
swervelib/imu/ADIS16470Swerve.java
Normal file
@@ -0,0 +1,83 @@
|
||||
package swervelib.imu;
|
||||
|
||||
import edu.wpi.first.wpilibj.ADIS16470_IMU;
|
||||
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
|
||||
|
||||
/**
|
||||
* IMU Swerve class for the {@link ADIS16470_IMU} device.
|
||||
*/
|
||||
public class ADIS16470Swerve extends SwerveIMU
|
||||
{
|
||||
|
||||
/**
|
||||
* {@link ADIS16470_IMU} device to read the current headings from.
|
||||
*/
|
||||
private final ADIS16470_IMU imu;
|
||||
/**
|
||||
* Offset for the ADIS16470 yaw reading.
|
||||
*/
|
||||
private double yawOffset = 0;
|
||||
|
||||
/**
|
||||
* Construct the ADIS16470 imu and reset default configurations. Publish the gyro to the SmartDashboard.
|
||||
*/
|
||||
public ADIS16470Swerve()
|
||||
{
|
||||
imu = new ADIS16470_IMU();
|
||||
factoryDefault();
|
||||
SmartDashboard.putData(imu);
|
||||
}
|
||||
|
||||
/**
|
||||
* Reset IMU to factory default.
|
||||
*/
|
||||
@Override
|
||||
public void factoryDefault()
|
||||
{
|
||||
yawOffset = imu.getAngle() % 360;
|
||||
}
|
||||
|
||||
/**
|
||||
* Clear sticky faults on IMU.
|
||||
*/
|
||||
@Override
|
||||
public void clearStickyFaults()
|
||||
{
|
||||
// Do nothing.
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the yaw in degrees.
|
||||
*
|
||||
* @param yaw Yaw angle in degrees.
|
||||
*/
|
||||
@Override
|
||||
public void setYaw(double yaw)
|
||||
{
|
||||
yawOffset = (yaw % 360) + (imu.getAngle() % 360);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch the yaw/pitch/roll from the IMU.
|
||||
*
|
||||
* @param yprArray Array which will be filled with {yaw, pitch, roll} in degrees.
|
||||
*/
|
||||
@Override
|
||||
public void getYawPitchRoll(double[] yprArray)
|
||||
{
|
||||
yprArray[0] = (imu.getAngle() % 360) - yawOffset;
|
||||
yprArray[1] = imu.getXComplementaryAngle() % 360;
|
||||
yprArray[2] = imu.getYComplementaryAngle() % 360;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the instantiated IMU object.
|
||||
*
|
||||
* @return IMU object.
|
||||
*/
|
||||
@Override
|
||||
public Object getIMU()
|
||||
{
|
||||
return imu;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user