-
Notifications
You must be signed in to change notification settings - Fork 3
/
io-package.json
156 lines (156 loc) · 4.93 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
{
"common": {
"name": "tino",
"version": "1.1.1",
"news": {
"1.1.1": {
"en": "Optimization for js-controller 3.3"
},
"1.1.0": {
"en": "Add tino protocol V2.2 support"
},
"1.0.3": {
"en": "Displays the interrupt value only for short time"
},
"1.0.2": {
"en": "Fix for negative temperature values"
},
"1.0.1": {
"en": "fix bug in interrupt detection for protocol V2"
},
"1.0.0": {
"en": "Update dependencies, Drop node 8 support"
},
"0.1.3": {
"en": "Update travis.yml, License, Readme"
},
"0.1.2": {
"en": "learningMode set to true if not defined"
},
"0.1.1": {
"en": "New learning mode with 10min. auto-timeout"
},
"0.1.0": {
"en": "Add tino protocol V2.0 support, add option to search new data points on already created sensors, add calculated data points humidity_absolute and dew_point"
},
"0.0.5": {
"en": "Add datapoints interrupt and heartbeat, set default baudrate to 38400, close serialport on unload and cleanup"
},
"0.0.4": {
"en": "Resize logo"
},
"0.0.3": {
"en": "Update readme"
},
"0.0.2": {
"en": "Add logo and npm release"
},
"0.0.1": {
"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"
}
},
"title": "TiNo",
"titleLang": {
"en": "TiNo",
"de": "TiNo",
"ru": "TiNo",
"pt": "TiNo",
"nl": "TiNo",
"fr": "TiNo",
"it": "TiNo",
"es": "TiNo",
"pl": "TiNo"
},
"desc": {
"en": "Read wireless sensordata received via TiNo",
"de": "Einlesen der vom TiNo empfangenen Funksensordaten",
"ru": "Чтение беспроводных сенсордат, полученных через TiNo",
"pt": "Leia sensordata sem fio recebido via TiNo",
"nl": "Lees draadloze sensordata ontvangen via TiNo",
"fr": "Lire les sensordata sans fil reçus via TiNo",
"it": "Leggi la sensordata wireless ricevuta tramite TiNo",
"es": "Lee sensordata inalámbrica recibida a través de TiNo",
"pl": "Odczytaj bezprzewodowe czujniki odebrane przez TiNo"
},
"authors": [
"bowao <cryolab@web.de>"
],
"keywords": [
"tiNo",
"nurazur",
"Funksensor",
"Raspberry"
],
"license": "MIT",
"platform": "Javascript/Node.js",
"main": "main.js",
"icon": "tino.png",
"enabled": true,
"extIcon": "https://raw.githubusercontent.com/bowao/ioBroker.tino/master/admin/tino.png",
"readme": "https://github.com/bowao/ioBroker.tino/blob/master/README.md",
"loglevel": "info",
"mode": "daemon",
"type": "hardware",
"compact": true,
"connectionType": "local",
"dataSource": "push",
"messagebox": true,
"materialize": true,
"materializeTab": true,
"dependencies": [
{
"js-controller": ">=1.4.2"
}
]
},
"native": {
"serialport": "",
"baudrate": 38400,
"learningMode": true
},
"objects": [],
"instanceObjects": [
{
"_id": "info",
"type": "channel",
"common": {
"name": "Information"
},
"native": {}
},
{
"_id": "info.connection",
"type": "state",
"common": {
"role": "indicator.connected",
"name": "If connected to Serial",
"type": "boolean",
"read": true,
"write": false,
"def": false
},
"native": {}
},
{
"_id": "info.learningMode",
"type": "state",
"common": {
"role": "indicator",
"name": "Learn new nodes and datapoints",
"type": "boolean",
"read": true,
"write": true,
"def": false
},
"native": {}
}
]
}