Skip to content

Commit

Permalink
fix(iCON Platform M+): Fix mapping of the Mixer button
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoluc committed Jun 1, 2024
1 parent fd84879 commit 5cc90c8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/device-configs/icon_platform-m-plus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ export const deviceConfig: DeviceConfig = {
automation: {
read: mainChannelButtons[1],
write: mainChannelButtons[2],
mixer: mainChannelButtons[0],
},
transport: {
left: mainChannelButtons[0],
cycle: controlButtonArray[9],
rewind: controlButtonArray[4],
forward: controlButtonArray[5],
Expand All @@ -175,7 +175,10 @@ export const deviceConfig: DeviceConfig = {
},

getSupplementaryShiftButtons(device) {
return [device.controlSectionElements.buttons.automation.mixer];
return [
device.controlSectionElements.buttons.transport.left, // "Mixer" on the Platform M(+)
device.controlSectionElements.buttons.automation.mixer, // MCU Mixer button, for those having re-assigned the Platform M(+) mixer button's MIDI note
];
},

configureEncoderMappings(defaultEncoderMappings, page) {
Expand Down

0 comments on commit 5cc90c8

Please sign in to comment.