public static enum MPU6050.GyroRange extends java.lang.Enum<MPU6050.GyroRange>
0 = +/- 250 degrees/sec 1 = +/- 500 degrees/sec 2 = +/- 1000 degrees/sec 3 = +/- 2000 degrees/sec
| Enum Constant and Description |
|---|
FS_1000
+/- 1000 degrees/sec
|
FS_2000
+/- 2000 degrees/sec
|
FS_250
+/- 250 degrees/sec
|
FS_500
+/- 500 degrees/sec
|
| Modifier and Type | Method and Description |
|---|---|
static MPU6050.GyroRange |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MPU6050.GyroRange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MPU6050.GyroRange FS_250
public static final MPU6050.GyroRange FS_500
public static final MPU6050.GyroRange FS_1000
public static final MPU6050.GyroRange FS_2000
public static MPU6050.GyroRange[] values()
for (MPU6050.GyroRange c : MPU6050.GyroRange.values()) System.out.println(c);
public static MPU6050.GyroRange 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