Breadboard for "Sensor - Flex sensor"

flex.png

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

 

Component Classes in this example:

Hi! The Johnny-Five community is building new projects every day. We made this newsletter to tell you about what's new, what's good, and what's next for Open Source robotics. Join us in exploring what we can make together.

Fork me on GitHub