forked from ioBroker/ioBroker.pimatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathio-package.json
81 lines (81 loc) · 2.49 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
{
"common": {
"name": "pimatic",
"version": "0.1.5",
"news": {
"0.1.5": {
"en": "add translation of config dialog",
"de": "Übersetzungen von Config-Dialog hinzugefügt",
"ru": "Добавлен перевод настроек"
},
"0.1.3": {
"en": "convert on/off to true/false\nRemove indicator.presence",
"de": "Konvertiere on/off nach true/false\nindicator.presence deaktiviert",
"ru": "Конвертировать on/off в true/false\nУбрана роль indicator.presence"
},
"0.1.2": {
"en": "fixed error",
"de": "korrigiere Fehler",
"ru": "Исправлена ошибка"
},
"0.1.1": {
"en": "initial adapter",
"de": "Initiale Version",
"ru": "Первоначальный адаптер"
}
},
"title": "pimatic adapter",
"desc": {
"en": "ioBroker pimatic Adapter",
"de": "ioBroker Pimatic Adapter",
"ru": "ioBroker Pimatic драйвер"
},
"platform": "Javascript/Node.js",
"mode": "daemon",
"icon": "pimatic.png",
"enabled": true,
"extIcon": "https://raw.githubusercontent.com/ioBroker/ioBroker.pimatic/master/admin/pimatic.png",
"keywords": [
"pimatic"
],
"readme": "https://github.com/ioBroker/ioBroker.pimatic/blob/master/README.md",
"loglevel": "info",
"type": "iot-systems",
"authors": [
{
"name": "bluefox",
"email": "[email protected]"
}
]
},
"native": {
"host": "localhost",
"port": 80,
"username": "",
"password": ""
},
"objects": [],
"instanceObjects": [
{
"_id": "info",
"type": "channel",
"common": {
"name": "Information"
},
"native": {}
},
{
"_id": "info.connection",
"type": "state",
"common": {
"role": "indicator.connected",
"name": "If connected to pimatic server",
"type": "boolean",
"read": true,
"write": false,
"def": false
},
"native": {}
}
]
}