Package com.titaniumtigers4829.data.imu
Record Class IMUData
java.lang.Object
java.lang.Record
com.titaniumtigers4829.data.imu.IMUData
public record IMUData(double robotYaw, double roll, double pitch, double yaw, double gyroX, double gyroY, double gyroZ, double accelX, double accelY, double accelZ, IMUData.IMUMode imuMode)
extends Record
Encapsulates the state of an internal Limelight IMU. This includes gyro and accelerometer data.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
Enum representing different IMU usage modes for robot orientation or localization. -
Constructor Summary
ConstructorsConstructorDescriptionIMUData()
Initializes an "empty" IMUData record with default valuesIMUData
(double robotYaw, double roll, double pitch, double yaw, double gyroX, double gyroY, double gyroZ, double accelX, double accelY, double accelZ, IMUData.IMUMode imuMode) Creates an instance of aIMUData
record class. -
Method Summary
Modifier and TypeMethodDescriptiondouble
accelX()
Returns the value of theaccelX
record component.double
accelY()
Returns the value of theaccelY
record component.double
accelZ()
Returns the value of theaccelZ
record component.final boolean
Indicates whether some other object is "equal to" this one.double
gyroX()
Returns the value of thegyroX
record component.double
gyroY()
Returns the value of thegyroY
record component.double
gyroZ()
Returns the value of thegyroZ
record component.final int
hashCode()
Returns a hash code value for this object.imuMode()
Returns the value of theimuMode
record component.double
pitch()
Returns the value of thepitch
record component.double
robotYaw()
Returns the value of therobotYaw
record component.double
roll()
Returns the value of theroll
record component.final String
toString()
Returns a string representation of this record class.double
yaw()
Returns the value of theyaw
record component.
-
Constructor Details
-
IMUData
public IMUData()Initializes an "empty" IMUData record with default values -
IMUData
public IMUData(double robotYaw, double roll, double pitch, double yaw, double gyroX, double gyroY, double gyroZ, double accelX, double accelY, double accelZ, IMUData.IMUMode imuMode) Creates an instance of aIMUData
record class.- Parameters:
robotYaw
- the value for therobotYaw
record componentroll
- the value for theroll
record componentpitch
- the value for thepitch
record componentyaw
- the value for theyaw
record componentgyroX
- the value for thegyroX
record componentgyroY
- the value for thegyroY
record componentgyroZ
- the value for thegyroZ
record componentaccelX
- the value for theaccelX
record componentaccelY
- the value for theaccelY
record componentaccelZ
- the value for theaccelZ
record componentimuMode
- the value for theimuMode
record component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
robotYaw
public double robotYaw()Returns the value of therobotYaw
record component.- Returns:
- the value of the
robotYaw
record component
-
roll
public double roll()Returns the value of theroll
record component.- Returns:
- the value of the
roll
record component
-
pitch
public double pitch()Returns the value of thepitch
record component.- Returns:
- the value of the
pitch
record component
-
yaw
public double yaw()Returns the value of theyaw
record component.- Returns:
- the value of the
yaw
record component
-
gyroX
public double gyroX()Returns the value of thegyroX
record component.- Returns:
- the value of the
gyroX
record component
-
gyroY
public double gyroY()Returns the value of thegyroY
record component.- Returns:
- the value of the
gyroY
record component
-
gyroZ
public double gyroZ()Returns the value of thegyroZ
record component.- Returns:
- the value of the
gyroZ
record component
-
accelX
public double accelX()Returns the value of theaccelX
record component.- Returns:
- the value of the
accelX
record component
-
accelY
public double accelY()Returns the value of theaccelY
record component.- Returns:
- the value of the
accelY
record component
-
accelZ
public double accelZ()Returns the value of theaccelZ
record component.- Returns:
- the value of the
accelZ
record component
-
imuMode
Returns the value of theimuMode
record component.- Returns:
- the value of the
imuMode
record component
-