Breadboard for "Compass - HMC5883L"
Fritzing diagram: 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("--------------------------------------");
});
});