Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,6 @@ public String getSysexHeader() {
return NOVATION_HEADER;
}

private void setMixLayout() {
midiOut.sendMidi(0xB6, 0x1E, 0x01);
}

private void setControlLayout() {
midiOut.sendMidi(0xB6, 0x1E, 0x02);
}

public void setToRelative(final int row, final boolean on) {
midiOut.sendMidi(0xB6, ROW_CC_IDS[row], on ? 0x7F : 0x00);
Expand Down Expand Up @@ -171,8 +164,6 @@ private void handleSysEx(final String data) {
private void startMidi() {
init = true;
startDawMode();
setControlLayout();
setMixLayout();
startListeners.forEach(Runnable::run);
host.scheduleTask(this::handlePing, 50);
}
Expand Down