Barometer - MS5611

Barometer - MS5611

docs/breadboard/multi-MS5611.png

Fritzing diagram: docs/breadboard/multi-MS5611.fzz

 

Run this example from the command line with:

node eg/barometer-MS5611.js
var five = require("../");
var board = new five.Board();

board.on("ready", function() {
  var pressure = new five.Barometer({
    controller: "MS5611",
  });

  pressure.on("change", function() {
    console.log("barometer");
    console.log("  pressure     : ", this.pressure);
    console.log("--------------------------------------");
  });
});

 

License

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