mirror of
https://github.com/eclipse/upm.git
synced 2025-07-01 17:31:13 +03:00
bmx055: remove bmg160, use new bmg160 library
Signed-off-by: Jon Trulson <jtrulson@ics.com>
This commit is contained in:
@ -45,11 +45,11 @@ public class BMI055_Example
|
||||
+ " z: " + data[2]
|
||||
+ " g");
|
||||
|
||||
data = sensor.getGyroscope();
|
||||
upm_bmx055.floatVector dataG = sensor.getGyroscope();
|
||||
|
||||
System.out.println("Gyroscope x: " + data[0]
|
||||
+ " y: " + data[1]
|
||||
+ " z: " + data[2]
|
||||
System.out.println("Gyroscope x: " + dataG.get(0)
|
||||
+ " y: " + dataG.get(1)
|
||||
+ " z: " + dataG.get(2)
|
||||
+ " degrees/s");
|
||||
|
||||
System.out.println();
|
||||
|
Reference in New Issue
Block a user