Skip to content

Latest commit

 

History

History
68 lines (35 loc) · 1.05 KB

compass-hmc5883l.md

File metadata and controls

68 lines (35 loc) · 1.05 KB

Compass - HMC5883L

Breadboard for "Compass - HMC5883L"

docs/breadboard/compass-hmc5883l.png

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("--------------------------------------");
  });
});

 

License

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.