Skip to content

Commit 8b0fa1c

Browse files
committed
Implement mixer shutdown
1 parent caceb63 commit 8b0fa1c

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ Currently this client can:
3535
* activate PAFL for each channel
3636
* set the fader level for each channel
3737
* activate the mute button for each channel
38+
* shut down the mixer
3839

3940
If you need more features then feel free to open a GitHub issue and I will add them.
4041

@@ -95,6 +96,10 @@ mixer.setMute({
9596
active: false
9697
})
9798

99+
// Shut down
100+
mixer.shutdown()
101+
102+
// Release connection to mixer
98103
mixer.disconnect()
99104
```
100105

src/client.js

+8
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,14 @@ class Client {
5050
output.sendMessage([0x80, channel, 0x00])
5151
}
5252

53+
shutdown() {
54+
this.setNrpnParameter({
55+
channel: 0,
56+
cmd: 0x5f,
57+
valueIndex: 0,
58+
})
59+
}
60+
5361
setNrpnParameter({ channel, cmd, value, valueIndex = 0x07 }) {
5462
const { output } = this
5563
output.sendMessage([0xb0, 0x63, channel])

0 commit comments

Comments
 (0)