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
- -
- Enable ✔ TCP OSC. The TCP format dropdown does not matter.
-
+ - Enable ✔ TCP OSC. The TCP format should be "TCP Format for OSC 1.1 (SLIP)".
- Enable Third Party OSC
-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
- Enable ✔ OSC RX
- Enable ✔ OSC TX
- All other fields may be left to defaults or blank.
+ - If a custom port is desired specify it in under OSC TCP Server Ports.
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');
},