homebridge-deconz 0.1.14 → 0.1.15
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/lib/Deconz/Resource.js +8 -0
- package/package.json +2 -2
package/lib/Deconz/Resource.js
CHANGED
@@ -1059,6 +1059,14 @@ class Resource {
|
|
1059
1059
|
}
|
1060
1060
|
}
|
1061
1061
|
|
1062
|
+
/** Patch a resource corresponding to a `Temperature` service.
|
1063
|
+
*/
|
1064
|
+
patchTemperature () {
|
1065
|
+
if (this.manufacturer === 'Develco Products A/S' && this.model === 'SMSZB-120') {
|
1066
|
+
this.id += '-T'
|
1067
|
+
}
|
1068
|
+
}
|
1069
|
+
|
1062
1070
|
/** Patch a resource corresponding to a `Thermostat` service.
|
1063
1071
|
*/
|
1064
1072
|
patchThermostat () {
|
package/package.json
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
"displayName": "Homebridge deCONZ",
|
5
5
|
"author": "Erik Baauw",
|
6
6
|
"license": "Apache-2.0",
|
7
|
-
"version": "0.1.
|
7
|
+
"version": "0.1.15",
|
8
8
|
"keywords": [
|
9
9
|
"homebridge-plugin",
|
10
10
|
"homekit",
|
@@ -26,7 +26,7 @@
|
|
26
26
|
"node": "^18.16.0"
|
27
27
|
},
|
28
28
|
"dependencies": {
|
29
|
-
"homebridge-lib": "~6.3.
|
29
|
+
"homebridge-lib": "~6.3.16",
|
30
30
|
"ws": "^8.13.0",
|
31
31
|
"xml2js": "~0.5.0"
|
32
32
|
},
|