-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathio-package.json
157 lines (157 loc) · 5.77 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"common": {
"name": "siro-thermostat",
"version": "0.4.0",
"news": {
"0.4.0": {
"en": "value conversion",
"de": "Wertumwandlung",
"ru": "преобразование стоимости",
"pt": "conversão de valor",
"nl": "waarde conversie",
"fr": "conversion de valeur",
"it": "conversione di valore",
"es": "conversión de valor",
"pl": "konwersja wartości",
"zh-cn": "价值转换"
},
"0.3.1": {
"en": "added info.connection",
"de": "info.connection hinzugefügt",
"ru": "добавлено инфо.соединение",
"pt": "adicionado info.connection",
"nl": "info.verbinding toegevoegd",
"fr": "infos ajoutées.connexion",
"it": "aggiunta info.connessione",
"es": "conexión de información agregada",
"pl": "dodano info.połączenie",
"zh-cn": "添加了 info.connection"
},
"0.3.0": {
"en": "added device settings to states",
"de": "Geräteeinstellungen zu Zuständen hinzugefügt",
"ru": "добавлены настройки устройства в штаты",
"pt": "configurações do dispositivo adicionadas aos estados",
"nl": "apparaatinstellingen toegevoegd aan toestanden",
"fr": "ajout des paramètres de l'appareil aux états",
"it": "aggiunte le impostazioni del dispositivo agli stati",
"es": "configuración del dispositivo agregado a los estados",
"pl": "dodano ustawienia urządzenia do stanów",
"zh-cn": "将设备设置添加到状态"
},
"0.2.0": {
"en": "added automatic reconnection feature",
"de": "automatische Wiederverbindungsfunktion hinzugefügt",
"ru": "добавлена функция автоматического переподключения",
"pt": "adicionado recurso de reconexão automática",
"nl": "automatische herverbindingsfunctie toegevoegd",
"fr": "fonctionnalité de reconnexion automatique ajoutée",
"it": "aggiunta funzione di riconnessione automatica",
"es": "característica de reconexión automática agregada",
"pl": "dodano funkcję automatycznego ponownego łączenia",
"zh-cn": "添加了自动重新连接功能"
},
"0.1.0": {
"en": "initial release",
"de": "Erstveröffentlichung",
"ru": "Начальная версия",
"pt": "lançamento inicial",
"nl": "Eerste uitgave",
"fr": "Première version",
"it": "Versione iniziale",
"es": "Versión inicial",
"pl": "Pierwsze wydanie",
"zh-cn": "首次出版"
}
},
"title": "siro-thermostat",
"titleLang": {
"en": "siro-thermostat",
"de": "Siro-Thermostat",
"ru": "сиротермостат",
"pt": "siro-termostato",
"nl": "siro-thermostaat",
"fr": "siro-thermostat",
"it": "siro-termostato",
"es": "siro-termostato",
"pl": "siro-termostat",
"zh-cn": "赛络恒温器"
},
"desc": {
"en": "siro-thermostat",
"de": "Siro-Thermostat",
"ru": "сиротермостат",
"pt": "siro-termostato",
"nl": "siro-thermostaat",
"fr": "siro-thermostat",
"it": "siro-termostato",
"es": "siro-termostato",
"pl": "siro-termostat",
"zh-cn": "赛络恒温器"
},
"authors": [
"steffen-brauer <steffen.brauer@mail.de>"
],
"keywords": [
"ioBroker",
"template",
"Smart Home",
"home automation"
],
"license": "MIT",
"platform": "Javascript/Node.js",
"main": "main.js",
"icon": "siro-thermostat.png",
"enabled": true,
"extIcon": "https://raw.githubusercontent.com/steffen-brauer/ioBroker.siro-thermostat/main/admin/siro-thermostat.png",
"readme": "https://github.com/steffen-brauer/ioBroker.siro-thermostat/blob/main/README.md",
"loglevel": "info",
"mode": "daemon",
"type": "climate-control",
"compact": true,
"connectionType": "local",
"dataSource": "push",
"adminUI": {
"config": "materialize"
},
"eraseOnUpload": true,
"dependencies": [
{
"js-controller": ">=3.3.22"
}
],
"globalDependencies": [
{
"admin": ">=5.0.0"
}
]
},
"native": {
"devices": "[]",
"reconnect": 30
},
"objects": [],
"instanceObjects": [
{
"_id": "info",
"type": "channel",
"common": {
"name": "Information"
},
"native": {}
},
{
"_id": "info.connection",
"type": "state",
"common": {
"role": "indicator.connected",
"name": "if connected to thermostats",
"type": "boolean",
"read": true,
"write": false,
"def": false
},
"native": {}
}
]
}