Skip to content

Commit

Permalink
feat: Reaper Master Protocol DCA support
Browse files Browse the repository at this point in the history
  • Loading branch information
olzzon committed Jun 27, 2019
1 parent 33400f3 commit f301dcd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/constants/mixerProtocols/reaperMaster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,26 +49,26 @@ export const ReaperMaster: IMixerProtocol = {
},
},
{
channelTypeName: 'DCA',
channelTypeName: 'DCA',
channelTypeColor: '#2f2f2f',
fromMixer: {
CHANNEL_FADER_LEVEL: ['none'],
CHANNEL_OUT_GAIN: ['/track/{channel}/volume'],
CHANNEL_VU: ['/track/{channel}/vu'],
CHANNEL_NAME: '/track/{channel}/name',
CHANNEL_OUT_GAIN: ['/dca/{channel}/fader'],
CHANNEL_VU: ['/dca/{channel}/vu'],
CHANNEL_NAME: '/dca/{channel}/config/name',
PFL: ['todo'],
AUX_SEND: ['none'],
},
toMixer: {
CHANNEL_FADER_LEVEL: ['none'],
CHANNEL_OUT_GAIN: ['/track/{channel}/volume'],
CHANNEL_OUT_GAIN: ['/dca/{channel}/volume'],
PFL_ON: [{
mixerMessage: "/track/{channel}/solo",
mixerMessage: "/dca/{channel}/solo",
value: 1,
type: "i"
}],
PFL_OFF: [{
mixerMessage: "/track/{channel}/solo",
mixerMessage: "/dca/{channel}/solo",
value: 0,
type: "i"
}],
Expand Down

0 comments on commit f301dcd

Please sign in to comment.