Back to Johnny Five

Grove - Button

docs/grove-button.md

2.1.01.3 KB
Original Source
<!--remove-start-->

Grove - Button

<!--remove-end-->

Run this example from the command line with:

bash
node eg/grove-button.js
javascript
var five = require("johnny-five");
var board = new five.Board();

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

  // Plug the Button module into the
  // Grove Shield's D4 jack
  var button = new five.Button(4);

  // Plug the LED module into the
  // Grove Shield's D6 jack. See
  // grove-led for more information.
  var led = new five.Led(6);

  // The following will turn the Led
  // on and off as the button is
  // pressed and released.
  button.on("press", function() {
    led.on();
  });

  button.on("release", function() {
    led.off();
  });
});

Additional Notes

For this program, you'll need:

 

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