Skip to content

Commit

Permalink
Fix: OSC command had wrong fader Index
Browse files Browse the repository at this point in the history
Fox: Ardour mixer protocol now set the ardour feedbacksettings (It had no initial feedback settings (so it only worked if set manually from Ardour.)
  • Loading branch information
olzzon committed Sep 27, 2019
1 parent 117974f commit bef73e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/constants/mixerProtocols/ardourMaster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ export const ArdourMaster: IMixerProtocol = {
pingTime: 9500,
initializeCommands: [
{
mixerMessage: "/strip/list",
value: "",
type: "",
mixerMessage: "/set_surface/feedback",
value: "135",
type: "i",
min: 0,
max: 1,
zero: 0.75
Expand Down
2 changes: 1 addition & 1 deletion src/utils/OscMixerConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export class OscMixerConnection {
if (!this.store.faders[0].fader[assignedFader - 1].pgmOn) {
window.storeRedux.dispatch({
type:'TOGGLE_PGM',
channel: assignedFader
channel: assignedFader -1
});
}

Expand Down

0 comments on commit bef73e4

Please sign in to comment.