iobroker.lorawan 1.22.6 → 1.22.7
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 +3 -0
- package/io-package.json +14 -14
- package/lib/modules/bridgeDeviceHandler.js +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,6 +24,9 @@ For now there is documentation in English here: https://wiki.hafenmeister.de
|
|
|
24
24
|
Placeholder for the next version (at the beginning of the line):
|
|
25
25
|
### **WORK IN PROGRESS**
|
|
26
26
|
-->
|
|
27
|
+
### 1.22.7 (2026-04-16)
|
|
28
|
+
* (BenAhrdt) add more device_class entries to assign roles
|
|
29
|
+
|
|
27
30
|
### 1.22.6 (2026-04-10)
|
|
28
31
|
* (BenAhrdt) bugfix cover endposition open
|
|
29
32
|
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "lorawan",
|
|
4
|
-
"version": "1.22.
|
|
4
|
+
"version": "1.22.7",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.22.7": {
|
|
7
|
+
"en": "add more device_class entries to assign roles",
|
|
8
|
+
"de": "mehr device class einträge hinzufügen, um rollen zuzuordnen",
|
|
9
|
+
"ru": "добавить больше записей device class для назначения ролей",
|
|
10
|
+
"pt": "adicionar mais entradas de dispositivo classe para atribuir funções",
|
|
11
|
+
"nl": "voeg meer apparaat klasse items toe om rollen toe te wijzen",
|
|
12
|
+
"fr": "ajouter plus d'entrées de classe de périphérique pour attribuer des rôles",
|
|
13
|
+
"it": "aggiungere più voci di device class per assegnare ruoli",
|
|
14
|
+
"es": "añadir más entradas de dispositivo clase para asignar roles",
|
|
15
|
+
"pl": "dodaj więcej wpisów _ device _ class do przypisywania ról",
|
|
16
|
+
"uk": "add more device class записів для позначення ролей",
|
|
17
|
+
"zh-cn": "添加更多设备 类条目以指定角色"
|
|
18
|
+
},
|
|
6
19
|
"1.22.6": {
|
|
7
20
|
"en": "bugfix cover endposition open",
|
|
8
21
|
"de": "bugfix cover endposition offen",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "dodaj więcej ról do urządzeń tolob",
|
|
81
94
|
"uk": "додати більше ролей до пристроїв",
|
|
82
95
|
"zh-cn": "向 toIob 设备添加更多角色"
|
|
83
|
-
},
|
|
84
|
-
"1.22.0": {
|
|
85
|
-
"en": "new Design in device Manager Cards",
|
|
86
|
-
"de": "neues Design in Gerätemanagerkarten",
|
|
87
|
-
"ru": "новый дизайн в картах диспетчера устройств",
|
|
88
|
-
"pt": "novo design em cartões gerenciadores de dispositivos",
|
|
89
|
-
"nl": "nieuw ontwerp in apparaatbeheerkaarten",
|
|
90
|
-
"fr": "nouvelle conception dans les cartes de gestionnaire d'appareils",
|
|
91
|
-
"it": "nuovo design nelle schede di gestione dei dispositivi",
|
|
92
|
-
"es": "nuevo diseño en tarjetas de gestión de dispositivos",
|
|
93
|
-
"pl": "nowy projekt w urządzeniu karty menedżer",
|
|
94
|
-
"uk": "новий дизайн в управлінні пристроями Картки",
|
|
95
|
-
"zh-cn": "设备管理卡中的新设计"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
|
@@ -708,6 +708,12 @@ class bridgeDeviceHandlerClass {
|
|
|
708
708
|
occupancy: 'sensor.motion',
|
|
709
709
|
carbon_dioxide: 'value.co2',
|
|
710
710
|
pm25: 'value.pm25',
|
|
711
|
+
pm10: 'value.pm10',
|
|
712
|
+
pm1: 'value.pm1',
|
|
713
|
+
carbon_monoxide: 'value.no',
|
|
714
|
+
nitrogen_dioxide: 'value.no2',
|
|
715
|
+
ozone: 'value.o3',
|
|
716
|
+
volatile_organic_compounds: 'value.tvoc',
|
|
711
717
|
};
|
|
712
718
|
|
|
713
719
|
if (map[entity.device_class]) {
|