iobroker.weathersense 1.0.3 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -1
- package/admin/i18n/de/translations.json +1 -1
- package/admin/i18n/en/translations.json +1 -1
- package/admin/i18n/es/translations.json +1 -1
- package/admin/i18n/fr/translations.json +1 -1
- package/admin/i18n/it/translations.json +1 -1
- package/admin/i18n/nl/translations.json +1 -1
- package/admin/i18n/pl/translations.json +1 -1
- package/admin/i18n/pt/translations.json +1 -1
- package/admin/i18n/ru/translations.json +1 -1
- package/admin/i18n/uk/translations.json +1 -1
- package/admin/i18n/zh-cn/translations.json +1 -1
- package/admin/jsonConfig.json +115 -115
- package/io-package.json +30 -4
- package/main.js +371 -291
- package/package.json +9 -18
- package/lib/adapter-config.d.ts +0 -19
package/README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|

|
|
2
|
+
|
|
2
3
|
# ioBroker.weathersense
|
|
3
4
|
|
|
4
5
|
[](https://www.npmjs.com/package/iobroker.weathersense)
|
|
@@ -23,12 +24,17 @@ For example, this WiFi weather station from Ideoon (Pearl):
|
|
|
23
24
|

|
|
24
25
|
|
|
25
26
|
## Use:
|
|
27
|
+
|
|
26
28
|
Simply enter your WeatherSense account login details (email and password).
|
|
27
29
|
The weather station data is stored in the weathersense data point.
|
|
28
30
|
The data can also be sent via MQTT.
|
|
29
31
|
|
|
30
|
-
|
|
31
32
|
## Changelog
|
|
33
|
+
### 2.0.1 (2025-08-17)
|
|
34
|
+
|
|
35
|
+
- More data output
|
|
36
|
+
- Cleaner type & channel output
|
|
37
|
+
|
|
32
38
|
### 1.0.3 (2025-07-03)
|
|
33
39
|
|
|
34
40
|
- Delay with different syntax
|
|
@@ -46,6 +52,7 @@ The data can also be sent via MQTT.
|
|
|
46
52
|
- Initial release
|
|
47
53
|
|
|
48
54
|
## License
|
|
55
|
+
|
|
49
56
|
MIT License
|
|
50
57
|
|
|
51
58
|
Copyright (c) 2025 Daniel Luginbühl <webmaster@ltspiceusers.ch>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"weathersense adapter settings": "Adaptereinstellungen für WeatherSense",
|
|
3
3
|
"username": "WeatherSense Username (Email)",
|
|
4
4
|
"passwort": "WeatherSense Passwort",
|
|
5
5
|
"mqtt_active": "MQTT benutzen",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"weathersense adapter settings": "Configuración del adaptador para WeatherSense",
|
|
3
3
|
"username": "Nombre de usuario de WeatherSense (correo electrónico)",
|
|
4
4
|
"passwort": "Contraseña de weathersense",
|
|
5
5
|
"mqtt_active": "Usar MQTT",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"weathersense adapter settings": "Paramètres de l'adaptateur pour WEATHERSENSE",
|
|
3
3
|
"username": "Nom d'utilisateur Weathersense (e-mail)",
|
|
4
4
|
"passwort": "Mot de passe WEATHERSENSE",
|
|
5
5
|
"mqtt_active": "Utiliser MQTT",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"weathersense adapter settings": "Impostazioni dell'adattatore per Weathersense",
|
|
3
3
|
"username": "Weathersense Nome utente (e -mail)",
|
|
4
4
|
"passwort": "Password di ammission",
|
|
5
5
|
"mqtt_active": "Usa mqtt",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"weathersense adapter settings": "Adapterinstellingen voor weerssense",
|
|
3
3
|
"username": "WeatherSense gebruikersnaam (e -mail)",
|
|
4
4
|
"passwort": "WeatherSense -wachtwoord",
|
|
5
5
|
"mqtt_active": "Gebruik MQTT",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"weathersense adapter settings": "Configurações do adaptador para WeatherSense",
|
|
3
3
|
"username": "WeatherSense Nome de usuário (email)",
|
|
4
4
|
"passwort": "Senha de WeatherSense",
|
|
5
5
|
"mqtt_active": "Use MQTT",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"weathersense adapter settings": "Настройки адаптера для Weathersense",
|
|
3
3
|
"username": "Имя пользователя Weathersense (электронная почта)",
|
|
4
4
|
"passwort": "Пароль Weathersense",
|
|
5
5
|
"mqtt_active": "Используйте MQTT",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"weathersense adapter settings": "Налаштування адаптера для Weathersense",
|
|
3
3
|
"username": "Ім'я користувача Weathersense (електронна пошта)",
|
|
4
4
|
"passwort": "Пароль Weathersense",
|
|
5
5
|
"mqtt_active": "Використовуйте MQTT",
|
package/admin/jsonConfig.json
CHANGED
|
@@ -1,118 +1,118 @@
|
|
|
1
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
|
-
|
|
2
|
+
"i18n": true,
|
|
3
|
+
"type": "panel",
|
|
4
|
+
"items": {
|
|
5
|
+
"username": {
|
|
6
|
+
"type": "text",
|
|
7
|
+
"label": "WeatherSense username (email)",
|
|
8
|
+
"newLine": true,
|
|
9
|
+
"xs": 12,
|
|
10
|
+
"sm": 12,
|
|
11
|
+
"md": 6,
|
|
12
|
+
"lg": 4,
|
|
13
|
+
"xl": 4
|
|
14
|
+
},
|
|
15
|
+
"passwort": {
|
|
16
|
+
"type": "text",
|
|
17
|
+
"label": "WeatherSense password",
|
|
18
|
+
"xs": 12,
|
|
19
|
+
"sm": 12,
|
|
20
|
+
"md": 6,
|
|
21
|
+
"lg": 4,
|
|
22
|
+
"xl": 4
|
|
23
|
+
},
|
|
24
|
+
"mqtt_active": {
|
|
25
|
+
"type": "checkbox",
|
|
26
|
+
"label": "Use MQTT",
|
|
27
|
+
"default": false,
|
|
28
|
+
"newLine": true,
|
|
29
|
+
"xs": 12,
|
|
30
|
+
"sm": 12,
|
|
31
|
+
"md": 6,
|
|
32
|
+
"lg": 4,
|
|
33
|
+
"xl": 4
|
|
34
|
+
},
|
|
35
|
+
"celsius": {
|
|
36
|
+
"type": "checkbox",
|
|
37
|
+
"label": "°C (unchecked = °F)",
|
|
38
|
+
"default": true,
|
|
39
|
+
"newLine": true,
|
|
40
|
+
"xs": 12,
|
|
41
|
+
"sm": 12,
|
|
42
|
+
"md": 6,
|
|
43
|
+
"lg": 4,
|
|
44
|
+
"xl": 4
|
|
45
|
+
},
|
|
46
|
+
"broker_address": {
|
|
47
|
+
"type": "text",
|
|
48
|
+
"label": "MQTT broker IP address",
|
|
49
|
+
"newLine": true,
|
|
50
|
+
"xs": 12,
|
|
51
|
+
"sm": 12,
|
|
52
|
+
"md": 6,
|
|
53
|
+
"lg": 4,
|
|
54
|
+
"xl": 4
|
|
55
|
+
},
|
|
56
|
+
"mqtt_port": {
|
|
57
|
+
"type": "number",
|
|
58
|
+
"label": "MQTT port",
|
|
59
|
+
"default": 1883,
|
|
60
|
+
"xs": 12,
|
|
61
|
+
"sm": 12,
|
|
62
|
+
"md": 6,
|
|
63
|
+
"lg": 4,
|
|
64
|
+
"xl": 4
|
|
65
|
+
},
|
|
66
|
+
"mqtt_user": {
|
|
67
|
+
"type": "text",
|
|
68
|
+
"label": "MQTT user",
|
|
69
|
+
"newLine": true,
|
|
70
|
+
"xs": 12,
|
|
71
|
+
"sm": 12,
|
|
72
|
+
"md": 6,
|
|
73
|
+
"lg": 4,
|
|
74
|
+
"xl": 4
|
|
75
|
+
},
|
|
76
|
+
"mqtt_pass": {
|
|
77
|
+
"type": "text",
|
|
78
|
+
"label": "MQTT password",
|
|
79
|
+
"xs": 12,
|
|
80
|
+
"sm": 12,
|
|
81
|
+
"md": 6,
|
|
82
|
+
"lg": 4,
|
|
83
|
+
"xl": 4
|
|
84
|
+
},
|
|
85
|
+
"sensor_id": {
|
|
86
|
+
"type": "number",
|
|
87
|
+
"label": "Sensor ID (1-20)",
|
|
88
|
+
"default": 1,
|
|
89
|
+
"newLine": true,
|
|
90
|
+
"xs": 12,
|
|
91
|
+
"sm": 12,
|
|
92
|
+
"md": 6,
|
|
93
|
+
"lg": 4,
|
|
94
|
+
"xl": 4
|
|
95
|
+
},
|
|
96
|
+
"storeJson": {
|
|
97
|
+
"type": "checkbox",
|
|
98
|
+
"label": "Save Json file",
|
|
99
|
+
"default": false,
|
|
100
|
+
"newLine": true,
|
|
101
|
+
"xs": 12,
|
|
102
|
+
"sm": 12,
|
|
103
|
+
"md": 6,
|
|
104
|
+
"lg": 4,
|
|
105
|
+
"xl": 4
|
|
106
|
+
},
|
|
107
|
+
"storeDir": {
|
|
108
|
+
"type": "text",
|
|
109
|
+
"label": "Folder for JSON file",
|
|
110
|
+
"default": "/home/pi",
|
|
111
|
+
"xs": 12,
|
|
112
|
+
"sm": 12,
|
|
113
|
+
"md": 6,
|
|
114
|
+
"lg": 4,
|
|
115
|
+
"xl": 4
|
|
116
|
+
}
|
|
116
117
|
}
|
|
117
|
-
}
|
|
118
118
|
}
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "weathersense",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "2.0.1",
|
|
5
5
|
"news": {
|
|
6
|
+
"2.0.1": {
|
|
7
|
+
"en": "More data output\nCleaner type & channel output",
|
|
8
|
+
"de": "Mehr Datenausgabe\nReiniger Typ & Kanal Ausgang",
|
|
9
|
+
"ru": "Больше выходных данных\nЧистый тип и выход канала",
|
|
10
|
+
"pt": "Mais saída de dados\nTipo & saída do canal mais limpo",
|
|
11
|
+
"nl": "Meer gegevensuitvoer\nSchonere & kanaaluitvoer",
|
|
12
|
+
"fr": "Plus de données\nType et sortie du canal plus propre",
|
|
13
|
+
"it": "Più output dati\nTipo di pulizia & uscita canale",
|
|
14
|
+
"es": "Más producción de datos\nSalida del canal del tipo de limpieza",
|
|
15
|
+
"pl": "Więcej danych\nTyp czyszczenia i wyjście kanału",
|
|
16
|
+
"uk": "Більше даних\nТип очищення та вихід каналу",
|
|
17
|
+
"zh-cn": "更多数据输出\n清洁类型和频道输出( T)"
|
|
18
|
+
},
|
|
19
|
+
"2.0.0": {
|
|
20
|
+
"en": "More data output\nCleaner type & channel output",
|
|
21
|
+
"de": "Mehr Datenausgabe\nReiniger Typ & Kanal Ausgang",
|
|
22
|
+
"ru": "Больше выходных данных\nЧистый тип и выход канала",
|
|
23
|
+
"pt": "Mais saída de dados\nTipo & saída do canal mais limpo",
|
|
24
|
+
"nl": "Meer gegevensuitvoer\nSchonere & kanaaluitvoer",
|
|
25
|
+
"fr": "Plus de données\nType et sortie du canal plus propre",
|
|
26
|
+
"it": "Più output dati\nTipo di pulizia & uscita canale",
|
|
27
|
+
"es": "Más producción de datos\nSalida del canal del tipo de limpieza",
|
|
28
|
+
"pl": "Więcej danych\nTyp czyszczenia i wyjście kanału",
|
|
29
|
+
"uk": "Більше даних\nТип очищення та вихід каналу",
|
|
30
|
+
"zh-cn": "更多数据输出\n清洁类型和频道输出( T)"
|
|
31
|
+
},
|
|
6
32
|
"1.0.3": {
|
|
7
33
|
"en": "Delay with different syntax",
|
|
8
34
|
"de": "Verzögerung mit unterschiedlicher Syntax",
|
|
@@ -114,12 +140,12 @@
|
|
|
114
140
|
},
|
|
115
141
|
"dependencies": [
|
|
116
142
|
{
|
|
117
|
-
"js-controller": ">=
|
|
143
|
+
"js-controller": ">=6.0.11"
|
|
118
144
|
}
|
|
119
145
|
],
|
|
120
146
|
"globalDependencies": [
|
|
121
147
|
{
|
|
122
|
-
"admin": ">=7.
|
|
148
|
+
"admin": ">=7.6.17"
|
|
123
149
|
}
|
|
124
150
|
]
|
|
125
151
|
},
|
|
@@ -141,6 +167,6 @@
|
|
|
141
167
|
"mqtt_port": "1883",
|
|
142
168
|
"sensor_id": "1",
|
|
143
169
|
"storeJson": false,
|
|
144
|
-
"storeDir": "/home/
|
|
170
|
+
"storeDir": "/home/pi"
|
|
145
171
|
}
|
|
146
172
|
}
|