Breadboard for "Touchpad - MPR121"

Fritzing diagram: keypad-MPR121.fzz
Run this example from the command line with:
node eg/keypad-MPR121.js
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);
    });
  });
});