Back to Johnny Five

Touchpad - MPR121

docs/keypad-MPR121.md

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

Touchpad - MPR121

<!--remove-end-->
Breadboard for "Touchpad - MPR121"

Fritzing diagram: docs/breadboard/keypad-MPR121.fzz

 

Run this example from the command line with:

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

board.on("ready", function() {
  var touchpad = new five.Touchpad({
    controller: "MPR121"
  });

  ["change", "press", "hold", "release"].forEach(function(eventType) {
    touchpad.on(eventType, function(event) {
      console.log("Event: %s, Target: %s", eventType, event.which);
    });
  });
});

 

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