diff --git a/buildStripDefs.js b/buildStripDefs.js index 04808e7..9bee1e7 100644 --- a/buildStripDefs.js +++ b/buildStripDefs.js @@ -476,7 +476,7 @@ export function buildStripDefs(self) { } } else { // Main LR, Aux/USB - const strip = '/lr/mix/fader' + const strip = fadeID = 'mFad' ? '/lr/mix/fader' : '/rtn/aux/mix/fader' fadeActions[fadeID] = { name: theStrip.description + ' Fader Set', options: [], @@ -500,7 +500,7 @@ export function buildStripDefs(self) { options: [], callback: async (action, context) => { const opt = action.options - fadeTo(action.actionId, '/lr/mix/fader', opt, self) + fadeTo(action.actionId, strip, opt, self) // internal only, fadeTo handles the 'store' }, } diff --git a/index.js b/index.js index 17db2e4..5567db9 100644 --- a/index.js +++ b/index.js @@ -70,7 +70,7 @@ class BAirInstance extends InstanceBase { this.unitsFound = {} if (config.scan) { // quick moment to pre-scan - await this.scanForMixers() + this.scanForMixers() } buildStripDefs(this) buildSoloDefs(this) diff --git a/package.json b/package.json index 5432cc4..17648cf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "behringer-xair", - "version": "2.0.1", + "version": "2.0.2", "type": "module", "main": "index.js", "scripts": {