This repository was archived by the owner on Jan 29, 2024. It is now read-only.
forked from Edubits/Zway-MQTT
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodule.json
124 lines (124 loc) · 2.39 KB
/
module.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"author": "Robin Eggenkamp, Pavel Poglazov, Ekaterina Volkova, Serguei Poltorak",
"category": "logging",
"defaults": {
"title": "__m_title__",
"description": "__m_descr__",
"clientId": "wbzway",
"host": "localhost",
"port": "1883",
"user": "none",
"password": "none",
"topicPrefix": "/devices/zway",
"topicPostfixSet": "on",
"precision": 0.01,
"groupByDevices": true,
"debug":false
},
"homepage": "https://github.com/wirenboard/wb-mqtt-zway-plugin",
"icon": "icon.png",
"maturity": "stable",
"moduleName": "WBMQTTNative",
"singleton": false,
"version": "2.1.1",
"repository": {
"source": "https://github.com/wirenboard/wb-mqtt-zway-plugin",
"type": "git"
},
"options": {
"fields": {
"clientId": {
"label": "__client_id_label__",
"order": 1
},
"host": {
"label": "__host_label__",
"order": 2
},
"port": {
"label": "__port_label__",
"order": 3
},
"user": {
"label": "__user_label__",
"helper": "__user_helper__",
"order": 4
},
"password": {
"label": "__password_label__",
"helper": "__password_helper__",
"order": 5
},
"topicPrefix": {
"label": "__topic_prefix_label__",
"order": 6
},
"topicPostfixSet": {
"label": "__topic_postfix_set_label__",
"helper": "__topic_postfix_set_helper__",
"order": 7
},
"precision": {
"label": "__precision_label__",
"helper": "__precision_helper__",
"order": 8
},
"groupByDevices": {
"label": "__groupByDevices_label__",
"helper": "__groupByDevices_helper__",
"order": 9
},
"debug": {
"label": "__debug_label__",
"helper": "__debug_helper__",
"order": 10
}
}
},
"schema": {
"type": "object",
"required": false,
"properties": {
"clientId": {
"type": "string",
"required": true
},
"host": {
"type": "string",
"required": true
},
"port": {
"type": "string",
"required": true
},
"user": {
"type": "string",
"required": false
},
"password": {
"type": "string",
"required": false
},
"topicPrefix": {
"type": "string",
"required": true
},
"topicPostfixSet": {
"type": "string",
"required": true
},
"precision": {
"type": "number",
"required": true
},
"groupByDevices":{
"type": "boolean",
"required": true
},
"debug":{
"type": "boolean",
"required": true
}
}
}
}