Back to Johnny Five

Button - Bumper

docs/button-bumper.md

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

Button - Bumper

<!--remove-end-->
Breadboard for "Button - Bumper"

Fritzing diagram: docs/breadboard/button-bumper.fzz

 

Run this example from the command line with:

bash
node eg/button-bumper.js
javascript
var five = require("johnny-five"),
  bumper, led;

five.Board().on("ready", function() {

  bumper = new five.Button(7);
  led = new five.Led(13);

  bumper.on("hit", function() {

    led.on();

  }).on("release", function() {

    led.off();

  });
});

 

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