Thermometer - BMP085

BMP085

docs/breadboard/multi-bmp085-sfe.png

Fritzing diagram: docs/breadboard/multi-bmp085-sfe.fzz

 

Run this example from the command line with:

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

board.on("ready", function() {
  var temp = new five.Thermometer({
    controller: "BMP085"
  });

  temp.on("change", function() {
    console.log("temperature");
    console.log("  celsius      : ", this.temperature.celsius);
    console.log("  fahrenheit   : ", this.temperature.fahrenheit);
    console.log("  kelvin       : ", this.temperature.kelvin);
    console.log("--------------------------------------");
  });
});

Illustrations / Photos

BMP085 (Adafruit)

docs/breadboard/multi-bmp085.png

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

 

Learn More

 

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.