midistat.h
void chnPitchBender(uchar chn, uchar lsb, uchar msb)
Stores a new pitch bender value in channel chn.
Definition: midistat.cpp:71
void keyPressure(uchar chn, uchar note, uchar vel)
Stores a new value for the key aftertouch.
void chnPressure(uchar chn, uchar vel)
Stores a new channel pressure value in channel chn.
Definition: midistat.cpp:66
uchar chnPressure(uchar chn)
Returns the pressure value currently used in channel chn.
Definition: midistat.h:97
void sysex(uchar *data, ulong size)
Stores a sysex message that will be send in the next call to sendData.
uchar chnController(uchar chn, uchar ctl)
Returns the value used for controller ctl in channel chn.
Definition: midistat.h:117
void chnController(uchar chn, uchar ctl, uchar v)
Stores a new value for controller ctl in channel chn.
Definition: midistat.cpp:76
void chnPatchChange(uchar chn, uchar patch)
Stores a new patch in channel chn.
Definition: midistat.cpp:61
int chnPitchBender(uchar chn)
Returns the pitch bender value used in channel chn.
Definition: midistat.h:107
void sendData(class DeviceManager *midi, int gm=1)
Sends the current MIDI state to the DeviceManager object used as parameter (you should have already s...
Definition: midistat.cpp:89