public static enum MPU6050.EXTFrameSyncBitLocation extends java.lang.Enum<MPU6050.EXTFrameSyncBitLocation>
EXT_SYNC_SET | FSYNC Bit Location -------------+------------------- 0 | Input disabled 1 | TEMP_OUT_L[0] 2 | GYRO_XOUT_L[0] 3 | GYRO_YOUT_L[0] 4 | GYRO_ZOUT_L[0] 5 | ACCEL_XOUT_L[0] 6 | ACCEL_YOUT_L[0] 7 | ACCEL_ZOUT_L[0]
| Enum Constant and Description |
|---|
DISABLED
Input disabled
|
GYRO_XOUT_L
GYRO_XOUT_L[0]
|
GYRO_YOUT_L
GYRO_YOUT_L[0]
|
GYRO_ZOUT_L
GYRO_ZOUT_L[0]
|
SYNC_ACCEL_XOUT_L
ACCEL_XOUT_L[0]
|
SYNC_ACCEL_YOUT_L
ACCEL_YOUT_L[0]
|
SYNC_ACCEL_ZOUT_L
ACCEL_ZOUT_L[0]
|
TEMP_OUT_L
TEMP_OUT_L[0]
|
| Modifier and Type | Method and Description |
|---|---|
static MPU6050.EXTFrameSyncBitLocation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MPU6050.EXTFrameSyncBitLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MPU6050.EXTFrameSyncBitLocation DISABLED
public static final MPU6050.EXTFrameSyncBitLocation TEMP_OUT_L
public static final MPU6050.EXTFrameSyncBitLocation GYRO_XOUT_L
public static final MPU6050.EXTFrameSyncBitLocation GYRO_YOUT_L
public static final MPU6050.EXTFrameSyncBitLocation GYRO_ZOUT_L
public static final MPU6050.EXTFrameSyncBitLocation SYNC_ACCEL_XOUT_L
public static final MPU6050.EXTFrameSyncBitLocation SYNC_ACCEL_YOUT_L
public static final MPU6050.EXTFrameSyncBitLocation SYNC_ACCEL_ZOUT_L
public static MPU6050.EXTFrameSyncBitLocation[] values()
for (MPU6050.EXTFrameSyncBitLocation c : MPU6050.EXTFrameSyncBitLocation.values()) System.out.println(c);
public static MPU6050.EXTFrameSyncBitLocation 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