From e64dc7c01399494f5fcb0527acbe205a0725dc81 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Fri, 13 Feb 2026 14:50:07 -0600 Subject: [PATCH] refactor(ocp): removed zechetti 2 from this silly thing for now --- .../zechettis/zechettiConnect.ts | 46 +++++++++---------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/lstV2/server/services/ocp/controller/specialProcesses/zechettis/zechettiConnect.ts b/lstV2/server/services/ocp/controller/specialProcesses/zechettis/zechettiConnect.ts index 8651e99..4f9de95 100644 --- a/lstV2/server/services/ocp/controller/specialProcesses/zechettis/zechettiConnect.ts +++ b/lstV2/server/services/ocp/controller/specialProcesses/zechettis/zechettiConnect.ts @@ -1,29 +1,29 @@ import { createPlcMonitor } from "./plcController.js"; export const zechettiConnect = () => { - const config: any = { - controllers: [ - { - id: "Zecchetti_1", - ip: "192.168.193.97", - slot: 0, - rpi: 250, - printerId: 22, // grabbed from 2.0 - tags: ["N7[0]"], - }, - { - id: "Zecchetti_2", - ip: "192.168.193.111", - slot: 0, - rpi: 100, - printerId: 23, - tags: ["N8[0]"], - }, - ], - }; + const config: any = { + controllers: [ + { + id: "Zecchetti_1", + ip: "192.168.193.97", + slot: 0, + rpi: 250, + printerId: 22, // grabbed from 2.0 + tags: ["N7[0]"], + }, + // { + // id: "Zecchetti_2", + // ip: "192.168.193.111", + // slot: 0, + // rpi: 100, + // printerId: 23, + // tags: ["N8[0]"], + // }, + ], + }; - const monitor = createPlcMonitor(config); + const monitor = createPlcMonitor(config); - // Start - monitor.start(); + // Start + monitor.start(); };