homebridge-tasmota-control 1.5.1-beta.10 → 1.5.1-beta.11
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
|
@@ -216,7 +216,7 @@ class Sensors extends EventEmitter {
|
|
|
216
216
|
|
|
217
217
|
try {
|
|
218
218
|
//accessory
|
|
219
|
-
const accessoryName = this.info.deviceName
|
|
219
|
+
const accessoryName = `${this.info.deviceName} sensor`
|
|
220
220
|
const accessoryUUID = AccessoryUUID.generate(this.serialNumber);
|
|
221
221
|
const accessoryCategory = Categories.SENSOR;
|
|
222
222
|
const accessory = new Accessory(accessoryName, accessoryUUID, accessoryCategory);
|