synthberry
Software MIDI synthesizer for the Raspberry Pi.
 All Classes Functions
midistatus.h
1 #ifndef MIDISTATUS_H
2 #define MIDISTATUS_H
3 
4 #include <cstdint>
5 
6 enum MidiStatus : uint8_t
7 {
8  None = 0,
9  NoteOff = 0x80,
10  NoteOn = 0x90,
11  KeyPressure = 0xA0,
12  ControlChange = 0xB0,
13  ProgramChange = 0xC0,
14  ChannelPressure = 0xD0,
15  PitchBend = 0xE0
16 };
17 
18 #endif // MIDISTATUS_H