Skip to content

Latest commit

 

History

History
72 lines (37 loc) · 1.01 KB

flex.md

File metadata and controls

72 lines (37 loc) · 1.01 KB

Sensor - Flex sensor

Breadboard for "Sensor - Flex sensor"

docs/breadboard/flex.png

Fritzing diagram: docs/breadboard/flex.fzz

 

Run this example from the command line with:

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

board.on("ready", function() {

  const flex = new Sensor({
    pin: "A2"
  });

  // Inject the `flex` hardware into
  // the Repl instance's context;
  // allows direct command line access
  board.repl.inject({ flex });

  flex.on("change", value => {
    console.log("Flex: ");
    console.log("  value  : ", flex.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.