homebridge-tasmota-control 1.6.15-beta.12 → 1.6.15-beta.13
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/mielhvac.js +2 -0
package/package.json
CHANGED
package/src/mielhvac.js
CHANGED
|
@@ -214,6 +214,8 @@ class MiElHvac extends EventEmitter {
|
|
|
214
214
|
|
|
215
215
|
const power = miElHvac.Power === 'on' ? 1 : 0;
|
|
216
216
|
const roomTemperature = miElHvac.Temperature ?? null;
|
|
217
|
+
if (!roomTemperature) return null;
|
|
218
|
+
|
|
217
219
|
const outdoorTemperature = miElHvac.OutdoorTemperature ?? null;
|
|
218
220
|
const setTemperature = miElHvac.SetTemperature;
|
|
219
221
|
const operationMode = miElHvac.Mode ?? 'Unknown';
|