Socket
Socket
Sign inDemoInstall

bno055

Package Overview
Dependencies
20
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    bno055

Node library for the Bosch Sensortec BNO055, an intelligent 9-axis “Absolute Orientation Sensor”, which includes sensors and sensor fusion in a single package.


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

node-BNO055

Installation

Install i2c following instructions here: https://github.com/kelly/node-i2c

$ npm install --save bno-055

Usage


var BNO055 = require('bno-055');

var async = require('async');

var imu = new BNO055();

imu.beginNDOF(function() {
    console.info('imu running');

    setInterval(function() {
        async.series({
            calibrationStatus: imu.getCalibrationStatus.bind(imu),
            quaternion: imu.getQuaternion.bind(imu),
            euler: imu.getEuler.bind(imu),
            linearAcceleration: imu.getLinearAcceleration.bind(imu)
        },
        function(err, results) {
            console.info( 'imu: ', JSON.stringify(results) );
        });
    }, 1000);
});

Change the mounting position of the sensor. See section 3.4 Axis remap in the datasheet for details.

var imu = new BNO055({
        orientation: BNO055.orientation(BNO055.AXIS_REMAP_Y, BNO055.AXIS_REMAP_X, BNO055.AXIS_REMAP_Z, 0,1,0)
    });

Resuse the sensor's calibration data. See section 3.10 Calibration for details on manual calibration.

// get calibration values, and save for later
var calibrationData;

imu.getCalibrationData(function(err, results) {
    if (!err && results) {
        calibrationData = results;
    }
});


//then use that data later when initializing the sensor
var imu = new BNO055({
    calibration: calibrationData
});

Datasheet

https://www.adafruit.com/datasheets/BST_BNO055_DS000_12.pdf

Keywords

FAQs

Last updated on 25 Sep 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc