Breadboard for "Multi - TH02"
Fritzing diagram: multi-TH02.fzz
Run this example from the command line with:
node eg/multi-TH02.js
var five = require("../");
var board = new five.Board();
board.on("ready", function() {
var multi = new five.Multi({
controller: "TH02"
});
multi.on("change", function() {
console.log("Thermometer");
console.log(" celsius : ", this.thermometer.celsius);
console.log(" fahrenheit : ", this.thermometer.fahrenheit);
console.log(" kelvin : ", this.thermometer.kelvin);
console.log("--------------------------------------");
console.log("Hygrometer");
console.log(" relative humidity : ", this.hygrometer.relativeHumidity);
console.log("--------------------------------------");
});
});
Learn More