Back to Johnny Five

Sensor

docs/sensor.md

2.1.0837 B
Original Source
<!--remove-start-->

Sensor

<!--remove-end-->

Run this example from the command line with:

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

 

<!--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-->