├── .gitmodules ├── README.md ├── examples ├── AnalogToMidi.jpg ├── MIDIdrum │ └── MIDIdrum.ino ├── MIDIenc │ └── MIDIenc.ino ├── MIDIpot │ └── MIDIpot.ino ├── MIDIswitch │ └── MIDIswitch.ino ├── MIDIswitch_toggle │ └── MIDIswitch_toggle.ino ├── MIDItouch │ └── MIDItouch.ino ├── PiezoSchematic.jpg ├── findAnalogRange │ └── findAnalogRange.ino ├── findTouchRange │ └── findTouchRange.ino ├── useAfterTouch │ └── useAfterTouch.ino └── useMuxedInput │ └── useMuxedInput.ino ├── keywords.txt ├── library.properties └── src ├── MIDIcontroller.h ├── MIDIdrum.cpp ├── MIDIdrum.h ├── MIDIenc.cpp ├── MIDIenc.h ├── MIDIpot.cpp ├── MIDIpot.h ├── MIDIswitch.cpp ├── MIDIswitch.h ├── MIDItouch.cpp ├── MIDItouch.h └── elapsedMillis.h /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/README.md -------------------------------------------------------------------------------- /examples/AnalogToMidi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/examples/AnalogToMidi.jpg -------------------------------------------------------------------------------- /examples/MIDIdrum/MIDIdrum.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/examples/MIDIdrum/MIDIdrum.ino -------------------------------------------------------------------------------- /examples/MIDIenc/MIDIenc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/examples/MIDIenc/MIDIenc.ino -------------------------------------------------------------------------------- /examples/MIDIpot/MIDIpot.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/examples/MIDIpot/MIDIpot.ino -------------------------------------------------------------------------------- /examples/MIDIswitch/MIDIswitch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/examples/MIDIswitch/MIDIswitch.ino -------------------------------------------------------------------------------- /examples/MIDIswitch_toggle/MIDIswitch_toggle.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/examples/MIDIswitch_toggle/MIDIswitch_toggle.ino -------------------------------------------------------------------------------- /examples/MIDItouch/MIDItouch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/examples/MIDItouch/MIDItouch.ino -------------------------------------------------------------------------------- /examples/PiezoSchematic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/examples/PiezoSchematic.jpg -------------------------------------------------------------------------------- /examples/findAnalogRange/findAnalogRange.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/examples/findAnalogRange/findAnalogRange.ino -------------------------------------------------------------------------------- /examples/findTouchRange/findTouchRange.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/examples/findTouchRange/findTouchRange.ino -------------------------------------------------------------------------------- /examples/useAfterTouch/useAfterTouch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/examples/useAfterTouch/useAfterTouch.ino -------------------------------------------------------------------------------- /examples/useMuxedInput/useMuxedInput.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/examples/useMuxedInput/useMuxedInput.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/library.properties -------------------------------------------------------------------------------- /src/MIDIcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/src/MIDIcontroller.h -------------------------------------------------------------------------------- /src/MIDIdrum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/src/MIDIdrum.cpp -------------------------------------------------------------------------------- /src/MIDIdrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/src/MIDIdrum.h -------------------------------------------------------------------------------- /src/MIDIenc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/src/MIDIenc.cpp -------------------------------------------------------------------------------- /src/MIDIenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/src/MIDIenc.h -------------------------------------------------------------------------------- /src/MIDIpot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/src/MIDIpot.cpp -------------------------------------------------------------------------------- /src/MIDIpot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/src/MIDIpot.h -------------------------------------------------------------------------------- /src/MIDIswitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/src/MIDIswitch.cpp -------------------------------------------------------------------------------- /src/MIDIswitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/src/MIDIswitch.h -------------------------------------------------------------------------------- /src/MIDItouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/src/MIDItouch.cpp -------------------------------------------------------------------------------- /src/MIDItouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/src/MIDItouch.h -------------------------------------------------------------------------------- /src/elapsedMillis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshnishikawa/MIDIcontroller/HEAD/src/elapsedMillis.h --------------------------------------------------------------------------------