bmx055: remove bmg160, use new bmg160 library

Signed-off-by: Jon Trulson <jtrulson@ics.com>
This commit is contained in:
Jon Trulson
2017-03-23 13:13:14 -06:00
parent 8dcd22794b
commit f61b615704
12 changed files with 70 additions and 1880 deletions

View File

@ -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();