Statistics
| Branch: | Revision:

adafruit_bno055 / README.md @ master

History | View | Annotate | Download (2.375 KB)

1 fe434109 Jan Hoffmann
Adafruit Unified BNO055 Driver (AHRS/Orientation)  [![Build Status](https://travis-ci.com/adafruit/Adafruit_BNO055.svg?branch=master)](https://travis-ci.com/adafruit/Adafruit_BNO055)
2 dffa812e Jan Hoffmann
================
3 4bc1c0c1 Kevin Townsend
4 dffa812e Jan Hoffmann
<a href="https://www.adafruit.com/product/2472"><img src="assets/board.jpg?raw=true" width="500px"></a>
5 4bc1c0c1 Kevin Townsend
6 dffa812e Jan Hoffmann
This driver is for the Adafruit BNO055 Breakout, and is based on Adafruit's Unified Sensor Library (Adafruit_Sensor).
7
8
Tested and works great with the Adafruit Si4713 Breakout Board 
9
To work with the Arduino Zero, the BNO055's ADR pin must be high.
10
* http://www.adafruit.com/products/2472
11 1da09ad2 David P Hilton
12 4bc1c0c1 Kevin Townsend
## What is the Adafruit Unified Sensor Library? ##
13
14
The Adafruit Unified Sensor Library ([Adafruit_Sensor](https://github.com/adafruit/Adafruit_Sensor)) provides a common interface and data type for any supported sensor.  It defines some basic information about the sensor (sensor limits, etc.), and returns standard SI units of a specific type and scale for each supported sensor type.
15
16
It provides a simple abstraction layer between your application and the actual sensor HW, allowing you to drop in any comparable sensor with only one or two lines of code to change in your project (essentially the constructor since the functions to read sensor data and get information about the sensor are defined in the base Adafruit_Sensor class).
17
18
This is imporant useful for two reasons:
19
20
1.) You can use the data right away because it's already converted to SI units that you understand and can compare, rather than meaningless values like 0..1023.
21
22
2.) Because SI units are standardised in the sensor library, you can also do quick sanity checks when working with new sensors, or drop in any comparable sensor if you need better sensitivity or if a lower cost unit becomes available, etc. 
23
24
Light sensors will always report units in lux, gyroscopes will always report units in rad/s, etc. ... freeing you up to focus on the data, rather than digging through the datasheet to understand what the sensor's raw numbers really mean.
25
26
Adafruit invests time and resources providing this open source code.  Please support Adafruit and open-source hardware by purchasing products from Adafruit!
27
28 dffa812e Jan Hoffmann
Kevin (KTOWN) Townsend Adafruit Industries.
29
MIT license, check license.txt for more information
30
All text above must be included in any redistribution
31
32
To install, use the Arduino Library Manager and search for "Adafruit BNO055" and install the library.