Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
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 1 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.