Using an LIS3DH Expander as a Virtual Board (3 Pin Analog Input: 0.9V-1.8V)
Fritzing diagram: docs/breadboard/expander-LIS3DH.fzz
Run this example from the command line with:
node eg/expander-LIS3DH.js
const { Board, Expander, Sensor } = require("johnny-five");
const board = new Board();
board.on("ready", () => {
const virtual = new Board.Virtual(
new Expander("LIS3DH")
);
const sensor = new Sensor({
pin: "A2",
board: virtual
});
sensor.on("change", value => {
console.log("Sensor: ");
console.log(" value : ", sensor.value);
console.log("-----------------");
});
});
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.