homebridge-tasmota-control 0.4.28 → 0.4.30
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/config.schema.json +1 -1
- package/index.js +1 -1
- package/package.json +2 -2
package/config.schema.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"pluginType": "platform",
|
|
4
4
|
"singular": true,
|
|
5
5
|
"fixArrays": true,
|
|
6
|
-
"headerDisplay": "This plugin works with
|
|
6
|
+
"headerDisplay": "This plugin works with Tasmota Firmware flashed deevices. Devices are exposed to HomeKit as separate accessories and each needs to be manually paired.",
|
|
7
7
|
"footerDisplay": "For documentation please see [GitHub repository](https://github.com/grzegorz914/homebridge-tasmota-control).",
|
|
8
8
|
"schema": {
|
|
9
9
|
"type": "object",
|
package/index.js
CHANGED
|
@@ -241,7 +241,7 @@ class tasmotaDevice {
|
|
|
241
241
|
}
|
|
242
242
|
});
|
|
243
243
|
this.tasmotaServices.push(tasmotaService);
|
|
244
|
-
accessory.addService(
|
|
244
|
+
accessory.addService(tasmotaService);
|
|
245
245
|
};
|
|
246
246
|
|
|
247
247
|
this.api.publishExternalAccessories(PLUGIN_NAME, [accessory]);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "Tasmota Control",
|
|
3
3
|
"name": "homebridge-tasmota-control",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.30",
|
|
5
5
|
"description": "Homebridge plugin (https://github.com/homebridge/homebridge) to control Tasmota flashed devices.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "grzegorz914",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"homebridge": ">=1.6.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"axios": "^1.6.
|
|
30
|
+
"axios": "^1.6.2"
|
|
31
31
|
},
|
|
32
32
|
"keywords": [
|
|
33
33
|
"homebridge",
|