import arb.soundcipher.*;


SoundCipher sc = new SoundCipher();


void setup() {

  SoundCipher.getMidiDeviceInfo();

  sc.setMidiDeviceOutput(1);

  frameRate(1);

}


void draw() {

  sc.playNote(sc.pcRandom(60, 72, sc.PENTATONIC), 100, 1);

}