Skip to content

Commit

Permalink
feat(X-Touch): Extend port detection by ports named "X-Touch INT"
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoluc committed Jul 4, 2023
1 parent 8bdff83 commit d25b2ff
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/device-configs/behringer_xtouch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ function makeChannelElements(surface: DecoratedDeviceSurface, x: number): Channe

export const deviceConfig: DeviceConfig = {
configureMainDeviceDetectionPortPair(detectionPortPair) {
detectionPortPair.expectInputNameEquals("X-Touch").expectOutputNameEquals("X-Touch");
detectionPortPair
.expectInputNameEquals("X-Touch")
.expectOutputNameEquals("X-Touch")
.expectInputNameEquals("X-Touch INT")
.expectOutputNameEquals("X-Touch INT");
},

createExtenderSurface(surface, x) {
Expand Down

0 comments on commit d25b2ff

Please sign in to comment.