Fritzing diagram: docs/breadboard/compass-hmc5883l.fzz
Run this example from the command line with:
node eg/compass-hmc5883l.js
const { Board, Compass } = require("johnny-five");
const board = new Board();
board.on("ready", () => {
const compass = new Compass({
controller: "HMC5883L"
});
compass.on("change", () => {
const {bearing, heading} = compass;
console.log("Compass:");
console.log(" bearing : ", bearing);
console.log(" heading : ", heading);
console.log("--------------------------------------");
});
});
Copyright (c) 2012-2014 Rick Waldron [email protected] Licensed under the MIT license. Copyright (c) 2015-2023 The Johnny-Five Contributors Licensed under the MIT license.