public void noteOff(int channel, int pitch, int velocity) {
   if (translator) {
     MIDIThread.MIDILightIn(pitch, 0);
   }
 }
 public void controllerChange(int channel, int number, int value) {
   MIDIThread.MIDILightIn(number, value);
 }