Back to Johnny Five

Expander - LIS3DH

docs/expander-LIS3DH.md

2.1.01.1 KB
Original Source
<!--remove-start-->

Expander - LIS3DH

<!--remove-end-->

Using an LIS3DH Expander as a Virtual Board (3 Pin Analog Input: 0.9V-1.8V)

Breadboard for "Expander - LIS3DH"

Fritzing diagram: docs/breadboard/expander-LIS3DH.fzz

 

Run this example from the command line with:

bash
node eg/expander-LIS3DH.js
javascript
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("-----------------");
  });
});

 

<!--remove-start-->

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.

<!--remove-end-->