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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "Tasmota Control",
3
3
  "name": "homebridge-tasmota-control",
4
- "version": "1.6.15-beta.22",
4
+ "version": "1.6.15-beta.23",
5
5
  "description": "Homebridge plugin to control Tasmota flashed devices.",
6
6
  "license": "MIT",
7
7
  "author": "grzegorz914",
package/src/constants.js CHANGED
@@ -95,8 +95,8 @@ export const MiElHVAC = {
95
95
  "SetNightMode": {
96
96
  "nightmode": "HVACSetNightMode%20on"
97
97
  },
98
- "RemoteTemp": "HVACRemoteTemp%20",
99
- "RemoteTempClearTime": "HVACRemoteTempClearTime%20",
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.RemoteTemp}${remoteTemp}`
713
+ const temp = `${MiElHVAC.SetRemoteTemp}${remoteTemp}`
714
714
  await this.axiosInstance(temp);
715
715
 
716
716
  return true