node-red-contrib-symi-mesh 1.6.3 → 1.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -114,9 +114,6 @@ module.exports = function(RED) {
114
114
 
115
115
  node.client.on('connect', () => {
116
116
  node.connected = true;
117
- // 启用TCP keep-alive,防止连接超时
118
- node.client.setKeepAlive(true, 30000); // 30秒心跳
119
- node.client.setNoDelay(true); // 禁用Nagle算法,立即发送
120
117
  node.warn(`[RS485] TCP已连接: ${node.host}:${node.port}`);
121
118
  node.emit('connected');
122
119
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red-contrib-symi-mesh",
3
- "version": "1.6.3",
3
+ "version": "1.6.4",
4
4
  "description": "Node-RED节点集合,用于通过TCP/串口连接Symi蓝牙Mesh网关,支持Home Assistant MQTT Discovery自动发现和云端数据同步",
5
5
  "main": "index.js",
6
6
  "scripts": {