homebridge-tasmota-control 1.6.5 → 1.6.6

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/sensors.js +4 -4
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "Tasmota Control",
3
3
  "name": "homebridge-tasmota-control",
4
- "version": "1.6.5",
4
+ "version": "1.6.6",
5
5
  "description": "Homebridge plugin to control Tasmota flashed devices.",
6
6
  "license": "MIT",
7
7
  "author": "grzegorz914",
package/src/sensors.js CHANGED
@@ -253,10 +253,10 @@ class Sensors extends EventEmitter {
253
253
  const debug = this.enableDebugMode ? this.emit('debug', `Prepare Sensor Services`) : false;
254
254
  this.emperatureServices = [];
255
255
  this.temperatureReferenceServices = [];
256
- this.temperatureObjService = [];
257
- this.temperatureAmbService = [];
258
- this.temperatureDewPointService = [];
259
- this.humidityService = [];
256
+ this.temperatureObjServices = [];
257
+ this.temperatureAmbServices = [];
258
+ this.temperatureDewPointServices = [];
259
+ this.humidityServices = [];
260
260
  this.carbonDioxydeServices = [];
261
261
  this.ambientLightServices = [];
262
262
  this.motionServices = [];