default to port 3037 for eos third party osc

This commit is contained in:
2023-01-18 22:03:43 -06:00
parent 12d357081d
commit 2c02b4751d
2 changed files with 5 additions and 7 deletions
+2 -2
View File
@@ -6,14 +6,14 @@ const Cue = require('./cue');
exports.config = {
defaultName: 'ETC Eos',
connectionType: 'osc',
defaultPort: 3032,
defaultPort: 3037,
mayChangePort: true,
heartbeatInterval: 5000,
heartbeatTimeout: 6000,
searchOptions: {
type: 'TCPport',
searchBuffer: Buffer.from('\xc0/eos/ping\x00\x00\x2c\x00\x00\x00\xc0', 'ascii'),
testPort: 3032,
testPort: 3037,
validateResponse(msg, info) {
return msg.toString().includes('/eos/out');
},