Skip to content

Latest commit

 

History

History
73 lines (38 loc) · 1.1 KB

expander-LIS3DH.md

File metadata and controls

73 lines (38 loc) · 1.1 KB

Expander - LIS3DH

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

Breadboard for "Expander - LIS3DH"

docs/breadboard/expander-LIS3DH.png

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("-----------------");
  });
});

 

License

Copyright (c) 2012-2014 Rick Waldron waldron.rick@gmail.com Licensed under the MIT license. Copyright (c) 2015-2023 The Johnny-Five Contributors Licensed under the MIT license.