homebridge-tasmota-control 1.6.15-beta.22 → 1.6.15-beta.23
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/constants.js +2 -2
- package/src/mielhvac.js +1 -1
package/package.json
CHANGED
package/src/constants.js
CHANGED
|
@@ -95,8 +95,8 @@ export const MiElHVAC = {
|
|
|
95
95
|
"SetNightMode": {
|
|
96
96
|
"nightmode": "HVACSetNightMode%20on"
|
|
97
97
|
},
|
|
98
|
-
"
|
|
99
|
-
"
|
|
98
|
+
"SetRemoteTemp": "HVACSetRemoteTemp%20",
|
|
99
|
+
"SetRemoteTempClearTime": "HVACSetRemoteTempClearTime%20",
|
|
100
100
|
"OperationMode": [
|
|
101
101
|
"AUTO",
|
|
102
102
|
"HEAT",
|
package/src/mielhvac.js
CHANGED
|
@@ -710,7 +710,7 @@ class MiElHvac extends EventEmitter {
|
|
|
710
710
|
const debug = this.enableDebugMode ? this.emit('debug', `Remote temp: ${JSON.stringify(remoteTemp, null, 2)}`) : false;
|
|
711
711
|
|
|
712
712
|
//set remote temp
|
|
713
|
-
const temp = `${MiElHVAC.
|
|
713
|
+
const temp = `${MiElHVAC.SetRemoteTemp}${remoteTemp}`
|
|
714
714
|
await this.axiosInstance(temp);
|
|
715
715
|
|
|
716
716
|
return true
|