homebridge-tasmota-control 1.7.10 → 1.7.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 +2 -2
- package/src/fans.js +1 -1
- package/src/lights.js +1 -1
- package/src/mielhvac.js +2 -2
- package/src/sensors.js +1 -1
- package/src/switches.js +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "Tasmota Control",
|
|
3
3
|
"name": "homebridge-tasmota-control",
|
|
4
|
-
"version": "1.7.
|
|
4
|
+
"version": "1.7.11",
|
|
5
5
|
"description": "Homebridge plugin to control Tasmota flashed devices.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "grzegorz914",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"LICENSE"
|
|
31
31
|
],
|
|
32
32
|
"engines": {
|
|
33
|
-
"homebridge": "^1.
|
|
33
|
+
"homebridge": "^1.8.0 || ^2.0.0 || ^2.0.0-beta.40 || ^2.0.0-alpha.40",
|
|
34
34
|
"node": "^20 || ^22 || ^24 || ^25"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
package/src/fans.js
CHANGED
package/src/lights.js
CHANGED
package/src/mielhvac.js
CHANGED
|
@@ -91,7 +91,7 @@ class MiElHvac extends EventEmitter {
|
|
|
91
91
|
const url = `http://${config.host}/cm?cmnd=`;
|
|
92
92
|
this.axiosInstance = axios.create({
|
|
93
93
|
baseURL: url,
|
|
94
|
-
timeout:
|
|
94
|
+
timeout: 30000,
|
|
95
95
|
withCredentials: config.auth,
|
|
96
96
|
auth: {
|
|
97
97
|
username: config.user,
|
|
@@ -103,7 +103,7 @@ class MiElHvac extends EventEmitter {
|
|
|
103
103
|
if (remoteTemperatureSensorEnable) {
|
|
104
104
|
this.axiosInstanceRemoteTemp = axios.create({
|
|
105
105
|
baseURL: remoteTemperatureSensorPath,
|
|
106
|
-
timeout:
|
|
106
|
+
timeout: 20000,
|
|
107
107
|
withCredentials: remoteTemperatureSensorAuth,
|
|
108
108
|
auth: {
|
|
109
109
|
username: remoteTemperatureSensorUser,
|
package/src/sensors.js
CHANGED
package/src/switches.js
CHANGED