node-red-contrib-symi-mesh 1.2.3
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.
- package/LICENSE +22 -0
- package/README.md +592 -0
- package/examples/knx-sync-example.json +465 -0
- package/lib/device-manager.js +575 -0
- package/lib/mqtt-helper.js +659 -0
- package/lib/protocol.js +510 -0
- package/lib/serial-client.js +286 -0
- package/lib/tcp-client.js +262 -0
- package/nodes/symi-device.html +303 -0
- package/nodes/symi-device.js +344 -0
- package/nodes/symi-gateway.html +83 -0
- package/nodes/symi-gateway.js +450 -0
- package/nodes/symi-mqtt.html +94 -0
- package/nodes/symi-mqtt.js +1113 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "node-red-contrib-symi-mesh",
|
|
3
|
+
"version": "1.2.3",
|
|
4
|
+
"description": "Node-RED节点集合,用于通过TCP/串口连接Symi蓝牙Mesh网关,支持Home Assistant MQTT Discovery自动发现",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"node-red",
|
|
11
|
+
"symi",
|
|
12
|
+
"mesh",
|
|
13
|
+
"bluetooth",
|
|
14
|
+
"mqtt",
|
|
15
|
+
"smart-home",
|
|
16
|
+
"home-assistant",
|
|
17
|
+
"iot",
|
|
18
|
+
"亖米",
|
|
19
|
+
"智能家居",
|
|
20
|
+
"蓝牙网关"
|
|
21
|
+
],
|
|
22
|
+
"author": {
|
|
23
|
+
"name": "SYMI",
|
|
24
|
+
"email": "303316404@qq.com",
|
|
25
|
+
"url": "http://www.cnsymi.com"
|
|
26
|
+
},
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"node-red": {
|
|
29
|
+
"version": ">=3.0.0",
|
|
30
|
+
"nodes": {
|
|
31
|
+
"symi-gateway": "nodes/symi-gateway.js",
|
|
32
|
+
"symi-device": "nodes/symi-device.js",
|
|
33
|
+
"symi-mqtt": "nodes/symi-mqtt.js"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"mqtt": "^5.3.0",
|
|
38
|
+
"serialport": "^12.0.0"
|
|
39
|
+
},
|
|
40
|
+
"engines": {
|
|
41
|
+
"node": ">=14.0.0"
|
|
42
|
+
},
|
|
43
|
+
"files": [
|
|
44
|
+
"lib/",
|
|
45
|
+
"nodes/",
|
|
46
|
+
"examples/",
|
|
47
|
+
"LICENSE",
|
|
48
|
+
"README.md"
|
|
49
|
+
],
|
|
50
|
+
"repository": {
|
|
51
|
+
"type": "git",
|
|
52
|
+
"url": "https://github.com/symi-daguo/node-red-contrib-symi-mesh.git"
|
|
53
|
+
},
|
|
54
|
+
"bugs": {
|
|
55
|
+
"url": "https://github.com/symi-daguo/node-red-contrib-symi-mesh/issues"
|
|
56
|
+
},
|
|
57
|
+
"homepage": "https://github.com/symi-daguo/node-red-contrib-symi-mesh#readme"
|
|
58
|
+
}
|