
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
Node library for the Bosch Sensortec BNO055, an intelligent 9-axis “Absolute Orientation Sensor”, which includes sensors and sensor fusion in a single package.
Install i2c following instructions here: https://github.com/kelly/node-i2c
$ npm install --save bno-055
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
});
FAQs
Node library for the Bosch Sensortec BNO055, an intelligent 9-axis “Absolute Orientation Sensor”, which includes sensors and sensor fusion in a single package.
The npm package bno055 receives a total of 7 weekly downloads. As such, bno055 popularity was classified as not popular.
We found that bno055 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.