From 2c02b4751d6237a6dea574328fede632c8c6b9c8 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Wed, 18 Jan 2023 22:03:43 -0600 Subject: [PATCH] default to port 3037 for eos third party osc --- plugins/eos/info.html | 8 +++----- plugins/eos/main.js | 4 ++-- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/plugins/eos/info.html b/plugins/eos/info.html index 4cb5ec9..6a3a6dd 100644 --- a/plugins/eos/info.html +++ b/plugins/eos/info.html @@ -2,17 +2,15 @@

Shell/ECU → Network

-If the "Third Party OSC" option is not available, Eos must be updated to 3.1 or -newer. +If the "Third Party OSC" option is not available, Eos must be updated to 3.1 or newer.

System Settings → Show Control → OSC

diff --git a/plugins/eos/main.js b/plugins/eos/main.js index a8363cd..96dcd75 100644 --- a/plugins/eos/main.js +++ b/plugins/eos/main.js @@ -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'); },