MIDI interpreter using mbed

Dependencies:   MIDI TextLCD mbed

Committer:
kayekss
Date:
Fri Jun 14 12:41:54 2013 +0000
Revision:
1:af9dd50ffbc2
Parent:
0:93868ff6d1b1
Fixed pitchbend byte order

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 };