-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathio-package.json
87 lines (87 loc) · 1.68 KB
/
io-package.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
{
"common": {
"name": "netio",
"version": "0.1.2",
"news": {
"0.0.1": {
"en": "initial release"
},
"0.0.5": {
"en": "first release on npm"
},
"0.1.0": {
"en": "cleanup"
},
"0.1.1": {
"en": "vulnerability fix"
},
"0.1.2": {
"en": "vulnerability fix"
}
},
"title": { "en": "NETIO" },
"desc": { "en": "Koukaam NETIO 230 A/B/C/CS adapter by FeLIX" },
"authors": [
"FeLIX <git@felixm.net>"
],
"keywords": [
"ioBroker",
"adapter",
"netio",
"ip",
"socket"
],
"license": "MIT",
"platform": "Javascript/Node.js",
"main": "netio.js",
"icon": "netio.png",
"enabled": true,
"extIcon": "https://raw.githubusercontent.com/flxm/ioBroker.netio/master/admin/netio.png",
"readme": "https://github.com/flxm/ioBroker.netio/blob/master/README.md",
"loglevel": "info",
"mode": "daemon",
"localLink": "http://%netIoAddress%:%netIoPort%/",
"type": "hardware",
"compact": true,
"materialize": true,
"dependencies": [
{
"js-controller": ">=1.4.2"
}
]
},
"native": {
"username": "admin",
"password": "admin",
"netIoAddress": "192.168.2.199",
"netIoPort": 80,
"polling": true,
"pollingInterval": 10,
"deviceName": "NETIO 230",
"numPorts": 4
},
"objects": [],
"instanceObjects": [
{
"_id": "info",
"type": "channel",
"common": {
"name": "Information"
},
"native": {}
},
{
"_id": "info.connection",
"type": "state",
"common": {
"role": "indicator.connected",
"name": "Device or service connected",
"type": "boolean",
"read": true,
"write": false,
"def": false
},
"native": {}
}
]
}