//arduinogetstarted.com/tutorials/arduino-button-library#include<ezOutput.h>// ezOutput libraryezButtonbutton(7);// create Button object that attach to pin 7;ezOutputled(9);// create ezOutput object that attach to pin 9;voidsetup() {button.setDebounceTime(50);// set debounce time to 50...