Skip to content

Latest commit

 

History

History
71 lines (35 loc) · 1.07 KB

barometer-mpl115a2.md

File metadata and controls

71 lines (35 loc) · 1.07 KB

Barometer - MPL115A2

MPL115A2

docs/breadboard/multi-mpl115a2.png

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

 

Run this example from the command line with:

node eg/barometer-mpl115a2.js
const { Barometer, Board } = require("johnny-five");
const board = new Board();

board.on("ready", () => {
  const barometer = new Barometer({
    controller: "MPL115A2"
  });

  barometer.on("change", () => {
    console.log("Barometer:");
    console.log("  pressure     : ", barometer.pressure);
    console.log("--------------------------------------");
  });
});

Learn More

 

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.