Skip to content

Latest commit

 

History

History
56 lines (30 loc) · 838 Bytes

sensor.md

File metadata and controls

56 lines (30 loc) · 838 Bytes

Sensor

Run this example from the command line with:

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

board.on("ready", () => {
  // Create a new generic sensor instance for
  // a sensor connected to an analog (ADC) pin
  const sensor = new Sensor("A0");

  // When the sensor value changes, log the value
  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.