You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.3 KiB
Plaintext
79 lines
2.3 KiB
Plaintext
import themidibus.*; //Import the library
|
|
|
|
MidiBus myBus; // The MidiBus
|
|
|
|
void setup() {
|
|
size(400, 400);
|
|
background(0);
|
|
|
|
MidiBus.list(); // List all available Midi devices on STDOUT. This will show each device's index and name.
|
|
|
|
// Either you can
|
|
// Parent In Out
|
|
// | | |
|
|
//myBus = new MidiBus(this, 0, 1); // Create a new MidiBus using the device index to select the Midi input and output devices respectively.
|
|
|
|
// or you can ...
|
|
// Parent In Out
|
|
// | | |
|
|
//myBus = new MidiBus(this, "IncomingDeviceName", "OutgoingDeviceName"); // Create a new MidiBus using the device names to select the Midi input and output devices respectively.
|
|
|
|
// or for testing you could ...
|
|
// Parent In Out
|
|
// | | |
|
|
myBus = new MidiBus(this, -1, "Java Sound Synthesizer"); // Create a new MidiBus with no input device and the default Java Sound Synthesizer as the output device.
|
|
}
|
|
|
|
void draw() {
|
|
int channel = 0;
|
|
int pitch = 64;
|
|
int velocity = 127;
|
|
Note note = new Note(channel, pitch, velocity);
|
|
|
|
myBus.sendNoteOn(note); // Send a Midi noteOn
|
|
delay(200);
|
|
myBus.sendNoteOff(note); // Send a Midi nodeOff
|
|
|
|
int number = 0;
|
|
int value = 90;
|
|
ControlChange change = new ControlChange(channel, number, velocity);
|
|
|
|
myBus.sendControllerChange(change); // Send a controllerChange
|
|
delay(2000);
|
|
}
|
|
|
|
void noteOn(Note note) {
|
|
// Receive a noteOn
|
|
println();
|
|
println("Note On:");
|
|
println("--------");
|
|
println("Channel:"+note.channel());
|
|
println("Pitch:"+note.pitch());
|
|
println("Velocity:"+note.velocity());
|
|
}
|
|
|
|
void noteOff(Note note) {
|
|
// Receive a noteOff
|
|
println();
|
|
println("Note Off:");
|
|
println("--------");
|
|
println("Channel:"+note.channel());
|
|
println("Pitch:"+note.pitch());
|
|
println("Velocity:"+note.velocity());
|
|
}
|
|
|
|
void controllerChange(ControlChange change) {
|
|
// Receive a controllerChange
|
|
println();
|
|
println("Controller Change:");
|
|
println("--------");
|
|
println("Channel:"+change.channel());
|
|
println("Number:"+change.number());
|
|
println("Value:"+change.value());
|
|
}
|
|
|
|
void delay(int time) {
|
|
int current = millis();
|
|
while (millis () < current+time) Thread.yield();
|
|
}
|