Skip to content

Latest commit

 

History

History
78 lines (45 loc) · 1.54 KB

accelerometer-adxl345.md

File metadata and controls

78 lines (45 loc) · 1.54 KB

Accelerometer - ADXL345

Breadboard for "Accelerometer - ADXL345"

docs/breadboard/accelerometer-adxl345.png

Fritzing diagram: docs/breadboard/accelerometer-adxl345.fzz

 

Run this example from the command line with:

node eg/accelerometer-adxl345.js
const { Accelerometer, Board } = require("johnny-five");
const board = new Board();

board.on("ready", () => {
  const accelerometer = new Accelerometer({
    controller: "ADXL345",
    // Optionally set the range to one of
    // 2, 4, 8, 16 (±g)
    // Defaults to ±2g
    // range: ...
  });

  accelerometer.on("change", () => {
    const {acceleration, inclination, orientation, pitch, roll, x, y, z} = accelerometer;
    console.log("Accelerometer:");
    console.log("  x            : ", x);
    console.log("  y            : ", y);
    console.log("  z            : ", z);
    console.log("  pitch        : ", pitch);
    console.log("  roll         : ", roll);
    console.log("  acceleration : ", acceleration);
    console.log("  inclination  : ", inclination);
    console.log("  orientation  : ", orientation);
    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.