homebridge-tasmota-control 1.6.3-beta.7 → 1.6.3-beta.8
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/package.json +1 -1
- package/src/sensors.js +2 -2
package/package.json
CHANGED
package/src/sensors.js
CHANGED
|
@@ -156,7 +156,7 @@ class Sensors extends EventEmitter {
|
|
|
156
156
|
if (!characteristic) {
|
|
157
157
|
continue;
|
|
158
158
|
}
|
|
159
|
-
service
|
|
159
|
+
service.updateCharacteristic(charType, value);
|
|
160
160
|
}
|
|
161
161
|
|
|
162
162
|
// energy
|
|
@@ -180,7 +180,7 @@ class Sensors extends EventEmitter {
|
|
|
180
180
|
if (!characteristic) {
|
|
181
181
|
continue;
|
|
182
182
|
}
|
|
183
|
-
service
|
|
183
|
+
service.updateCharacteristic(charType, value);
|
|
184
184
|
}
|
|
185
185
|
}
|
|
186
186
|
|