12-polyphonic "chiptune" MIDI synthesizer for LPC1768 (Standalone version)

Dependencies:   ClockControl PowerControl mbed

Revision:
0:727737138ac5
Child:
5:7bc917d03bd6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/events.h	Sun Nov 09 08:00:33 2014 +0000
@@ -0,0 +1,13 @@
+#ifndef EVENTS_H_
+#define EVENTS_H_
+
+void dispatchNoteOff(char messageBytes[3]);
+void dispatchNoteOn(char messageBytes[3]);
+void sendControlChange(char messageBytes[3]);
+void sendProgramChange(char messageBytes[3]);
+void sendPitchBend(char messageBytes[3]);
+void sendSystemReset();
+void allNoteOff(char messageBytes[3]);
+void dumpInstrumentList();
+
+#endif