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

Dependencies:   ClockControl PowerControl mbed

events.h

Committer:
kayekss
Date:
2014-12-09
Revision:
5:7bc917d03bd6
Parent:
0:727737138ac5

File content as of revision 5:7bc917d03bd6:

#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 resetAllControllers(char messageBytes[3]);
void dumpInstrumentList();

#endif