homebridge-tasmota-control 1.6.3-beta.9 → 1.6.3
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 +1 -1
package/package.json
CHANGED
package/src/sensors.js
CHANGED
|
@@ -462,7 +462,7 @@ class Sensors extends EventEmitter {
|
|
|
462
462
|
energyService.getCharacteristic(Characteristic.ReactivePower)
|
|
463
463
|
.onGet(async () => {
|
|
464
464
|
const value = sensor.reactivePower;
|
|
465
|
-
const info = this.disableLogInfo ? false : this.emit('info', `sensor: ${sensorName} reactive power: ${value}
|
|
465
|
+
const info = this.disableLogInfo ? false : this.emit('info', `sensor: ${sensorName} reactive power: ${value} VAr`);
|
|
466
466
|
return value;
|
|
467
467
|
});
|
|
468
468
|
}
|