Skip to content

Commit ad6aa91

Browse files
committed
some more "080" updates to "08x"
-also, added "CTRL-Click" to library link comments in examples
1 parent cea3022 commit ad6aa91

File tree

23 files changed

+64
-16
lines changed

23 files changed

+64
-16
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ SparkFun VR IMU BNO08X Arduino Library
77

88
<!--
99
10-
The BNO080/BNO085 IMU has a combination triple axis accelerometer/gyro/magnetometer packaged with an ARM Cortex M0+ running powerful algorithms. This enables the BNO080 Inertial Measurement Unit (IMU) to produce accurate rotation vector headings with an error of 5 degrees or less. It's what we've been waiting for: all the sensor data is combined into meaningful, accurate IMU information.
10+
The BNO08x IMU has a combination triple axis accelerometer/gyro/magnetometer packaged with an ARM Cortex M0+ running powerful algorithms. This enables the BNO08x Inertial Measurement Unit (IMU) to produce accurate rotation vector headings with an error of 5 degrees or less. It's what we've been waiting for: all the sensor data is combined into meaningful, accurate IMU information.
1111
1212
This IC was designed to be implemented in Android based cellular phones to handle all the computations necessary for virtual reality goggles using only your phone. The sensor is quite powerful but with power comes a complex interface. We've written an I<sup>2</sup>C based library that provides the rotation vector (the reading most folks want from an IMU) as well as raw acceleration, gyro, and magnetometer readings. The sensor is capable of communicating over SPI and UART as well!
1313
14-
In addition the BNO080 IMU provides a built-in step counter, tap detector, activity classifier (are you running, walking, or sitting still?), and a shake detector. We are duly impressed.
14+
In addition the BNO08x IMU provides a built-in step counter, tap detector, activity classifier (are you running, walking, or sitting still?), and a shake detector. We are duly impressed.
1515
1616
Library written by Nathan Seidle ([SparkFun](http://www.sparkfun.com)).
1717

examples/Example_01_RotationVector/Example_01_RotationVector.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
#include <Wire.h>
3636

37-
#include "SparkFun_BNO08x_Arduino_Library.h" // Click here to get the library: http://librarymanager/All#SparkFun_BNO08x
37+
#include "SparkFun_BNO08x_Arduino_Library.h" // CTRL+Click here to get the library: http://librarymanager/All#SparkFun_BNO08x
3838
BNO08x myIMU;
3939

4040
void setup() {

examples/Example_02_Accelerometer/Example_02_Accelerometer.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
#include <Wire.h>
3535

36-
#include "SparkFun_BNO08x_Arduino_Library.h" // Click here to get the library: http://librarymanager/All#SparkFun_BNO08x
36+
#include "SparkFun_BNO08x_Arduino_Library.h" // CTRL+Click here to get the library: http://librarymanager/All#SparkFun_BNO08x
3737
BNO08x myIMU;
3838

3939
void setup() {

examples/Example_03_Gyro/Example_03_Gyro.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@
3333

3434
#include <Wire.h>
3535

36+
<<<<<<< Updated upstream
3637
#include "SparkFun_BNO08x_Arduino_Library.h" // Click here to get the library: http://librarymanager/All#SparkFun_BNO08x
38+
=======
39+
#include "SparkFun_BNO08x_Arduino_Library.h" // CTRL+Click here to get the library: http://librarymanager/All#SparkFun_BNO08x
40+
>>>>>>> Stashed changes
3741
BNO08x myIMU;
3842

3943
void setup() {

examples/Example_04_Magnetometer/Example_04_Magnetometer.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@
3333

3434
#include <Wire.h>
3535

36+
<<<<<<< Updated upstream
3637
#include "SparkFun_BNO08x_Arduino_Library.h" // Click here to get the library: http://librarymanager/All#SparkFun_BNO08x
38+
=======
39+
#include "SparkFun_BNO08x_Arduino_Library.h" // CTRL+Click here to get the library: http://librarymanager/All#SparkFun_BNO08x
40+
>>>>>>> Stashed changes
3741
BNO08x myIMU;
3842

3943
void setup() {

examples/Example_05_StepCounter/Example_05_StepCounter.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@
3333

3434
#include <Wire.h>
3535

36+
<<<<<<< Updated upstream
3637
#include "SparkFun_BNO08x_Arduino_Library.h" // Click here to get the library: http://librarymanager/All#SparkFun_BNO08x
38+
=======
39+
#include "SparkFun_BNO08x_Arduino_Library.h" // CTRL+Click here to get the library: http://librarymanager/All#SparkFun_BNO08x
40+
>>>>>>> Stashed changes
3741
BNO08x myIMU;
3842

3943
void setup() {

examples/Example_06_StabilityClassifier/Example_06_StabilityClassifier.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
#include <Wire.h>
3636

37-
#include "SparkFun_BNO08x_Arduino_Library.h" // Click here to get the library: http://librarymanager/All#SparkFun_BNO08x
37+
#include "SparkFun_BNO08x_Arduino_Library.h" // CTRL+Click here to get the library: http://librarymanager/All#SparkFun_BNO08x
3838
BNO08x myIMU;
3939

4040
void setup() {

examples/Example_07_ActivityClassifier/Example_07_ActivityClassifier.ino

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
/*
22
Using the BNO08x IMU
33
4+
<<<<<<< Updated upstream
45
This is a fun one! The BNO086 can guess at what activity you are doing:
6+
=======
7+
This is a fun one! The BNO08x can guess at what activity you are doing:
8+
>>>>>>> Stashed changes
59
In vehicle
610
On bicycle
711
On foot
@@ -42,7 +46,11 @@
4246

4347
#include <Wire.h>
4448

49+
<<<<<<< Updated upstream
4550
#include "SparkFun_BNO08x_Arduino_Library.h" // Click here to get the library: http://librarymanager/All#SparkFun_BNO08x
51+
=======
52+
#include "SparkFun_BNO08x_Arduino_Library.h" // CTRL+Click here to get the library: http://librarymanager/All#SparkFun_BNO08x
53+
>>>>>>> Stashed changes
4654
BNO08x myIMU;
4755

4856
void setup() {

examples/Example_08_AdvancedConfig/Example_08_AdvancedConfig.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
#include <Wire.h>
4848

49-
#include "SparkFun_BNO08x_Arduino_Library.h" // Click here to get the library: http://librarymanager/All#SparkFun_BNO08x
49+
#include "SparkFun_BNO08x_Arduino_Library.h" // CTRL+Click here to get the library: http://librarymanager/All#SparkFun_BNO08x
5050
BNO08x myIMU;
5151

5252
// define some pins for our new I2C port, aka "Wire1"

examples/Example_09_LinearAccelerometer/Example_09_LinearAccelerometer.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@
3333

3434
#include <Wire.h>
3535

36+
<<<<<<< Updated upstream
3637
#include "SparkFun_BNO08x_Arduino_Library.h" // Click here to get the library: http://librarymanager/All#SparkFun_BNO08x
38+
=======
39+
#include "SparkFun_BNO08x_Arduino_Library.h" // CTRL+Click here to get the library: http://librarymanager/All#SparkFun_BNO08x
40+
>>>>>>> Stashed changes
3741
BNO08x myIMU;
3842

3943
void setup() {

0 commit comments

Comments
 (0)