-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathio-package.json
133 lines (133 loc) · 4.4 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
{
"common": {
"name": "tinyrx4",
"version": "1.0.1",
"news": {
"1.0.1":{
"en": "Optimization for js-controller 3.3, Fix for negative temperature values, Update travis.yml"
},
"1.0.0":{
"en": "Update dependencies, Drop node 8 support"
},
"0.1.5":{
"en": "Update travis.yml, License, Readme"
},
"0.1.4":{
"en": "fix typo"
},
"0.1.3":{
"en": "fix npm Version"
},
"0.1.2":{
"en": "close serialport on unload and cleanup 2"
},
"0.1.1":{
"en": "close serialport on unload, cleanup"
},
"0.1.0":{
"en": "add option to search new data points on already created sensors, add calculated data points humidity_absolute and dew point, remove TiNo support (TiNo now has his own adapter)",
"de": "Berechnete Datenpunkte Luftfeuchtigkeit_absolut und Taupunkt hinzugefügt, TiNo-Unterstützung entfernt (TiNo hat jetzt seinen eigenen Adapter)"
},
"0.0.3":{
"en": "add support for TiNo and bugfix"
},
"0.0.2":{
"en": "cleanup 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": "TinyRX4",
"titleLang": {
"en": "TinyRX4",
"de": "TinyRX4",
"ru": "TinyRX4",
"pt": "TinyRX4",
"nl": "TinyRX4",
"fr": "TinyRX4",
"it": "TinyRX4",
"es": "TinyRX4",
"pl": "TinyRX4"
},
"desc": {
"en": "Read wireless sensordata received via TinyRX4",
"de": "Einlesen der vom TinyRX4 empfangenen Funksensordaten",
"ru": "Чтение беспроводных сенсордат, полученных через TinyRX4",
"pt": "Leia sensordata sem fio recebido via TinyRX4",
"nl": "Lees draadloze sensordata ontvangen via TinyRX4",
"fr": "Lire les sensordata sans fil reçus via TinyRX4",
"it": "Leggi la sensordata wireless ricevuta tramite TinyRX4",
"es": "Lee sensordata inalámbrica recibida a través de TinyRX4",
"pl": "Odczytaj bezprzewodowe czujniki odebrane przez TinyRX4"
},
"authors": [
"bowao <cryolab@web.de>"
],
"keywords": [
"tinyrx4",
"meigrafd",
"Funksensor",
"Raspberry",
"tinytx4"
],
"license": "MIT",
"platform": "Javascript/Node.js",
"main": "main.js",
"icon": "tinyRX4.png",
"enabled": true,
"extIcon": "https://raw.githubusercontent.com/bowao/ioBroker.tinyrx4/master/admin/tinyRX4.png",
"readme": "https://github.com/bowao/ioBroker.tinyrx4/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": 9600,
"newDPonNodes": 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": {}
}
]
}