johnny-five
Version:
The JavaScript Robotics and Hardware Programming Framework. Use with: Arduino (all models), Electric Imp, Beagle Bone, Intel Galileo & Edison, Linino One, Pinoccio, Raspberry Pi, Spark Core, TI Launchpad and more!
18 lines (15 loc) • 478 B
JavaScript
var five = require("../");
var board = new five.Board();
board.on("ready", function() {
var temperature = new five.Temperature({
controller: "BMP180",
freq: 250
});
temperature.on("change", function() {
console.log("temperature");
console.log(" celsius : ", this.celsius);
console.log(" fahrenheit : ", this.fahrenheit);
console.log(" kelvin : ", this.kelvin);
console.log("--------------------------------------");
});
});