From: Mark Slee Date: Sat, 19 Oct 2013 18:41:47 +0000 (-0700) Subject: Turn off track selection LEDs X-Git-Url: https://git.piment-noir.org/?p=SugarCubes.git;a=commitdiff_plain;h=677670a68d3c3a57f3442fa40a1c3595c0c43789 Turn off track selection LEDs --- diff --git a/_MIDI.pde b/_MIDI.pde index a584ef9..9a27f8c 100644 --- a/_MIDI.pde +++ b/_MIDI.pde @@ -641,6 +641,12 @@ class APC40MidiOutput implements LXParameter.Listener, GridOutput { lx.cycleBaseHue(60000); output.sendNoteOn(6, 49, 127); + + // Turn off the track selection lights + for (int i = 0; i < 8; ++i) { + output.sendNoteOn(i, 51, 0); + } + output.sendNoteOn(0, 80, 0); } private void resetParameters() {