Package com.titaniumtigers4829.data.imu
Enum Class IMUData.IMUMode
- All Implemented Interfaces:
Serializable
,Comparable<IMUData.IMUMode>
,Constable
- Enclosing class:
- IMUData
Enum representing different IMU usage modes for robot orientation or localization. Defines how
internal and external IMUs are utilized, including seeding and convergence assistance.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionUse only an external IMU orientation set by setRobotOrientation() for orientation data.Use an external IMU orientation set by setRobotOrientation() as the primary source and seed the internal IMU with its data.Use the internal IMU with external IMU-assisted convergence.Use only the internal IMU for orientation data.Use the internal IMU with MT1-assisted convergence. -
Method Summary
Modifier and TypeMethodDescriptionstatic IMUData.IMUMode
fromValue
(int value) Returns the IMUMode corresponding to the given integer value.int
Returns the integer value associated with this IMU mode.static IMUData.IMUMode
Returns the enum constant of this class with the specified name.static IMUData.IMUMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EXTERNAL_IMU
Use only an external IMU orientation set by setRobotOrientation() for orientation data. No interaction with the internal IMU. -
EXTERNAL_IMU_SEED_INTERNAL
Use an external IMU orientation set by setRobotOrientation() as the primary source and seed the internal IMU with its data. This should be used for "zeroing" the internal IMU. The internal IMU is initialized or calibrated using external IMU values. -
INTERNAL_IMU
Use only the internal IMU for orientation data. No reliance on an external IMU. -
INTERNAL_MT1_ASSISTED
Use the internal IMU with MT1-assisted convergence. MegaTag1 provides additional data to improve internal IMU accuracy or stability. -
INTERNAL_EXTERNAL_ASSISTED
Use the internal IMU with external IMU-assisted convergence. The external IMU provides supplementary data to enhance internal IMU performance.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getModeValue
public int getModeValue()Returns the integer value associated with this IMU mode.- Returns:
- The mode value (0 for EXTERNAL_IMU, 1 for EXTERNAL_IMU_SEED_INTERNAL, etc.)
-
fromValue
Returns the IMUMode corresponding to the given integer value.- Parameters:
value
- The integer value to convert to an IMUMode- Returns:
- The matching IMUMode, or null if no match is found
-