├── .gitattributes ├── .gitignore ├── Firmware ├── MIDI-CV │ ├── MIDI-CV.ino │ ├── dac-integration-test │ │ └── dac-integration-test.ino │ ├── notemap.cpp │ └── notemap.h ├── MIDI-sniffer │ └── MIDI-sniffer.ino ├── buttons-N-pots │ └── buttons-N-pots.ino ├── clock-gen │ ├── clock-gen.ino │ └── msec-to-bpm.ods └── clock-recv │ └── clock-recv.ino ├── Hardware ├── SparkFun_MIDI_Shield.brd └── SparkFun_MIDI_Shield.sch ├── LICENSE.md ├── Production └── SparkFun_MIDI_Shield_Panel_v15.brd └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MIDI_Shield/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MIDI_Shield/HEAD/.gitignore -------------------------------------------------------------------------------- /Firmware/MIDI-CV/MIDI-CV.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MIDI_Shield/HEAD/Firmware/MIDI-CV/MIDI-CV.ino -------------------------------------------------------------------------------- /Firmware/MIDI-CV/dac-integration-test/dac-integration-test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MIDI_Shield/HEAD/Firmware/MIDI-CV/dac-integration-test/dac-integration-test.ino -------------------------------------------------------------------------------- /Firmware/MIDI-CV/notemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MIDI_Shield/HEAD/Firmware/MIDI-CV/notemap.cpp -------------------------------------------------------------------------------- /Firmware/MIDI-CV/notemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MIDI_Shield/HEAD/Firmware/MIDI-CV/notemap.h -------------------------------------------------------------------------------- /Firmware/MIDI-sniffer/MIDI-sniffer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MIDI_Shield/HEAD/Firmware/MIDI-sniffer/MIDI-sniffer.ino -------------------------------------------------------------------------------- /Firmware/buttons-N-pots/buttons-N-pots.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MIDI_Shield/HEAD/Firmware/buttons-N-pots/buttons-N-pots.ino -------------------------------------------------------------------------------- /Firmware/clock-gen/clock-gen.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MIDI_Shield/HEAD/Firmware/clock-gen/clock-gen.ino -------------------------------------------------------------------------------- /Firmware/clock-gen/msec-to-bpm.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MIDI_Shield/HEAD/Firmware/clock-gen/msec-to-bpm.ods -------------------------------------------------------------------------------- /Firmware/clock-recv/clock-recv.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MIDI_Shield/HEAD/Firmware/clock-recv/clock-recv.ino -------------------------------------------------------------------------------- /Hardware/SparkFun_MIDI_Shield.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MIDI_Shield/HEAD/Hardware/SparkFun_MIDI_Shield.brd -------------------------------------------------------------------------------- /Hardware/SparkFun_MIDI_Shield.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MIDI_Shield/HEAD/Hardware/SparkFun_MIDI_Shield.sch -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MIDI_Shield/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Production/SparkFun_MIDI_Shield_Panel_v15.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MIDI_Shield/HEAD/Production/SparkFun_MIDI_Shield_Panel_v15.brd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/MIDI_Shield/HEAD/README.md --------------------------------------------------------------------------------