22 #ifndef ZVISION_MIDI_H 23 #define ZVISION_MIDI_H 35 void noteOn(int8 channel, int8 noteNumber, int8 velocity);
36 void noteOff(int8 channel);
37 void setPan(int8 channel, int8 pan);
38 void setVolume(int8 channel, int8 volume);
39 void setProgram(int8 channel, int8 prog);
41 int8 getFreeChannel();
49 chan() : playing(
false), note(0) {};
53 chan _playChannels[16];
Definition: mididrv.h:309