Skip to content

Latest commit

 

History

History
83 lines (47 loc) · 1.41 KB

compass-MAG3110-tessel.md

File metadata and controls

83 lines (47 loc) · 1.41 KB

Compass - MAG3110 on Tessel 2

Breadboard for "Compass - MAG3110 on Tessel 2"

docs/breadboard/compass-MAG3110-tessel.png

Fritzing diagram: docs/breadboard/compass-MAG3110-tessel.fzz

 

Run this example from the command line with:

node eg/compass-MAG3110-tessel.js
var Tessel = require("tessel-io");
var five = require("../");
var board = new five.Board({
  io: new Tessel()
});

board.on("ready", function() {

  var compass = new five.Compass({
    controller: "MAG3110",
    // Optionally pre-load the offsets
    offsets: {
      x: [-819, -335],
      y: [702, 1182],
      z: [-293, -13],
    },
  });

  compass.on("calibrated", function(offsets) {
    // Use this data with the optional "offsets" property above
    console.log("calibrated:", offsets);
  });

  compass.on("change", function() {
    console.log("change");
    console.log("  heading : ", Math.floor(this.heading));
    console.log("  bearing : ", this.bearing.name);
    console.log("--------------------------------------");
  });
});

 

License

Copyright (c) 2012, 2013, 2014 Rick Waldron waldron.rick@gmail.com Licensed under the MIT license. Copyright (c) 2017 The Johnny-Five Contributors Licensed under the MIT license.