Skip to content

Commit 6733b89

Browse files
committed
Meter Fixes
1 parent 47a5117 commit 6733b89

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

DM3 Parameters-1.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ OK scninfo 1010 "MIXER:Lib/Scene/RecallInc" 0 0 0 0 0 "" none any w 1
158158
OK scninfo 1011 "MIXER:Lib/Scene/RecallDec" 0 0 0 0 0 "" none any w 1
159159
OK mtrinfo 2000 "MIXER:Current/Meter/InCh" 16 3 0 127 0 "dB" mtr any r 1 "PreHPF|PreFader|PostOn"
160160
OK mtrinfo 2001 "MIXER:Current/Meter/StInCh" 2 3 0 127 0 "dB" mtr any r 1 "PreEQ|PreFader|PostOn"
161-
OK mtrinfo 2002 "MIXER:Current/Meter/FxRetCh" 4 2 0 127 0 "dB" mtr any r 1 "PreFader|PostOn"
161+
OK mtrinfo 2002 "MIXER:Current/Meter/FxRtnCh" 4 2 0 127 0 "dB" mtr any r 1 "PreFader|PostOn"
162162
OK mtrinfo 2100 "MIXER:Current/Meter/Mix" 6 3 0 127 0 "dB" mtr any r 1 "PreEQ|PreFader|PostOn"
163163
OK mtrinfo 2101 "MIXER:Current/Meter/Mtrx" 2 3 0 127 0 "dB" mtr any r 1 "PreEQ|PreFader|PostOn"
164164
OK mtrinfo 2102 "MIXER:Current/Meter/St" 1 3 0 127 0 "dB" mtr any r 1 "PreEQ|PreFader|PostOn"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Yamaha Remote Control Protocol v3.4.6 - for Companion v3
1+
## Yamaha Remote Control Protocol v3.4.7 - for Companion v3
22

33
**Available for the following Yamaha Pro Audio Devices**
44

@@ -24,7 +24,7 @@ _Andrew Broughton_
2424

2525
**REVISION HISTORY**
2626

27-
3.4.3 - 3.4.6
27+
3.4.3 - 3.4.7
2828
- Meter fixes/improvements
2929

3030
3.4.2

companion/HELP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Yamaha Remote Control Protocol - v3.4.6
1+
## Yamaha Remote Control Protocol - v3.4.7
22

33
Please visit https://discourse.checkcheckonetwo.com for help, discussions, suggestions, etc.
44

companion/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "yamaha-rcp",
44
"shortname": "yamaha-rcp",
55
"description": "yamaha-rcp",
6-
"version": "3.4.6",
6+
"version": "3.4.7",
77
"license": "MIT",
88
"repository": "git+https://github.com/bitfocus/companion-module-yamaha-rcp.git",
99
"bugs": "https://discourse.checkcheckonetwo.com",

index.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Control module for Yamaha Pro Audio digital mixers
22
// Andrew Broughton <andy@checkcheckonetwo.com>
3-
// Dec 26, 2023 Version 3.4.6 (for Companion v3)
3+
// Dec 26, 2023 Version 3.4.7 (for Companion v3)
44

55
const { InstanceBase, Regex, runEntrypoint, combineRgb, TCPHelper } = require('@companion-module/base')
66

@@ -9,6 +9,7 @@ const actionFuncs = require('./actions.js')
99
const varFuncs = require('./variables.js')
1010
const upgrade = require('./upgrade')
1111

12+
const RCP_PORT = 49280
1213
const MSG_DELAY = 5
1314
const METER_REFRESH = 10000
1415

@@ -138,7 +139,7 @@ class instance extends InstanceBase {
138139
delete this.socket
139140

140141
if (config.host) {
141-
this.socket = new TCPHelper(config.host, 49280)
142+
this.socket = new TCPHelper(config.host, RCP_PORT)
142143

143144
this.socket.on('status_change', (status, message) => {
144145
this.updateStatus(status, message)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"legacy": [
44
"yamaha-scp"
55
],
6-
"version": "3.4.6",
6+
"version": "3.4.7",
77
"main": "index.js",
88
"scripts": {
99
"test": "echo \"Error: no test specified\" && exit 1",

0 commit comments

Comments
 (0)