public static enum Gyro.OutputDataRate extends java.lang.Enum<Gyro.OutputDataRate>
| Enum Constant and Description |
|---|
ODR_100_HZ
100Hz
|
ODR_1600_HZ
1600Hz
|
ODR_200_HZ
200Hz
|
ODR_25_HZ
25Hz
|
ODR_3200_HZ
3200Hz
|
ODR_400_HZ
400Hz
|
ODR_50_HZ
50Hz
|
ODR_800_HZ
800Hz
|
| Modifier and Type | Field and Description |
|---|---|
byte |
bitmask |
| Modifier and Type | Method and Description |
|---|---|
static Gyro.OutputDataRate |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Gyro.OutputDataRate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Gyro.OutputDataRate ODR_25_HZ
public static final Gyro.OutputDataRate ODR_50_HZ
public static final Gyro.OutputDataRate ODR_100_HZ
public static final Gyro.OutputDataRate ODR_200_HZ
public static final Gyro.OutputDataRate ODR_400_HZ
public static final Gyro.OutputDataRate ODR_800_HZ
public static final Gyro.OutputDataRate ODR_1600_HZ
public static final Gyro.OutputDataRate ODR_3200_HZ
public static Gyro.OutputDataRate[] values()
for (Gyro.OutputDataRate c : Gyro.OutputDataRate.values()) System.out.println(c);
public static Gyro.OutputDataRate valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null