This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// pin to use for indicator LED | |
int ledPin = 12; | |
// pin that is connected to the footswitch | |
int buttonPin = 2; | |
int buttonState = 0; | |
int buttonLastState = 0; | |
int buttonInitState = 0; | |
int muteStatus = 0; |