MIDI interpreter using mbed

Dependencies:   MIDI TextLCD mbed

Committer:
kayekss
Date:
Fri Jun 14 09:25:58 2013 +0000
Revision:
0:93868ff6d1b1
MIDI event interpretion goes succesfully; Slave communication procedures are not implemented yet.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
kayekss 0:93868ff6d1b1 1 class Instrument {
kayekss 0:93868ff6d1b1 2 public:
kayekss 0:93868ff6d1b1 3 uint32_t noteOnMs;
kayekss 0:93868ff6d1b1 4 uint8_t channel;
kayekss 0:93868ff6d1b1 5 uint8_t noteNumber;
kayekss 0:93868ff6d1b1 6 uint8_t velocity;
kayekss 0:93868ff6d1b1 7 };