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("-----------------");
});
});
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.