From 2ec02d71bb181afb382d816e2c4752caeb2af15e Mon Sep 17 00:00:00 2001 From: stswangzhiping <59632378+stswangzhiping@users.noreply.github.com> Date: Sat, 28 Mar 2026 22:53:11 +0800 Subject: [PATCH] fix(client): start LAN carrier polling (led.lan was never started) --- lib/client.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/client.js b/lib/client.js index 4257d97..7422f27 100644 --- a/lib/client.js +++ b/lib/client.js @@ -91,6 +91,9 @@ class ClawClient { this._startSdNotify(); + // RJ45 链路轮询(OpenVFD play),与 WS 无关,进程起来即开始 + led.lan.start(); + // 启动蓝牙状态监控(独立于网络,立即开始) this._btMonitor = new BtMonitor(); this._btMonitor.start();