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
/* | |
* Laser Harp MIDI Controller | |
* | |
* Authors: Wei-Luen (Alan) Peng and Oren Shoham | |
*/ | |
// hex to MIDI note reference: https://www.wavosaur.com/download/midi-note-hex.php | |
// scale: B5, A5, G5, F5, E5, D5, C5 | |
const int notes[7] = {0x5F, 0x5D, 0x5B, 0x59, 0x58, 0x56, 0x54}; | |
const int startingInputPin = 3; |