next up previous 8
Next: Events Up: Midi Device Previous: Connection

Subsections

Actions

Note On

midiAlias:NoteOn(int channel, int note, int velocity);
int channel: The Midi-Channel; range: {0, ... 15}
int note: The Midi-Note; range: {0, ... 127}
int velocity: The Velocity; range: {0, ... 127}

Note Off

midiAlias:NoteOff(int channel, int note, int velocity);
int channel: The Midi-Channel; range: {0, ... 15}
int note: The Midi-Note; range: {0, ... 127}
int velocity: The Velocity; range: {0, ... 127}

Polyphonic Key Pressure

midiAlias:PKPressure(int channel, int note, int velocity);
int channel: The Midi-Channel; range: {0, ... 15}
int note: The Midi-Note; range: {0, ... 127}
int velocity: The Velocity; range: {0, ... 127}

Control Change

midiAlias:ContChange(int channel, int controller, int value);
int channel: The Midi-Channel; range: {0, ... 15}
int controller: The Controller; range: {0, ... 127}
int value: The new Controller Value; range: {0, ... 127}

Program Change

midiAlias:ProgChange(int channel, int prognr);
int channel: The Midi-Channel; range: {0, ... 15}
int prognr: The Program Number; range: {0, ... 127}

Channel Pressure (After Touch)

midiAlias:ChanPress(int channel, int pressure);
int channel: The Midi-Channel; range: {0, ... 15}
int pressure: The Pressure Value; range: {0, ... 127}

Pitch Wheel Change

midiAlias:PWChange(int channel, int value);
int channel: The Midi-Channel; range: {0, ... 15}
int value: The Pitch-Wheel Value; range: {0, ... 127}

Song Position Pointer

midiAlias:SPPointer(int position);
int position: The Position in the Song; range: {0, ... 127}

Song Select

midiAlias:SongSel(int song);
int song: The Song Number; range: {0, ... 127}

Tune Request

midiAlias:TuneReq(void);

Send Timing Clock

midiAlias:STClock(void);

Start Sequence

midiAlias:StrtSeq(void);

Stop Sequence

midiAlias:StopSeq(void);

Continue Sequence

midiAlias:ContSeq(void);

Reset

midiAlias:Reset(void);


next up previous 8
Next: Events Up: Midi Device Previous: Connection
Volker Christian 2000-10-24