From 677670a68d3c3a57f3442fa40a1c3595c0c43789 Mon Sep 17 00:00:00 2001 From: Mark Slee Date: Sat, 19 Oct 2013 11:41:47 -0700 Subject: [PATCH] Turn off track selection LEDs --- _MIDI.pde | 6 ++++++ 1 file changed, 6 insertions(+) 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() { -- 2.34.1