homebridge-econet-rheem 1.5.19 → 1.6.0-alpha.0
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/CHANGELOG.md +12 -4
- package/README.md +36 -6
- package/config.schema.json +117 -17
- package/dist/homebridge/platform.js +4 -1
- package/dist/homebridge/platform.js.map +1 -1
- package/dist/homebridge/settings.d.ts +3 -6
- package/dist/homebridge/settings.js +3 -6
- package/dist/homebridge/settings.js.map +1 -1
- package/dist/homebridge-ui/public/index.html +1 -1
- package/dist/i18n/en.d.ts +27 -12
- package/dist/i18n/en.js +28 -13
- package/dist/i18n/en.js.map +1 -1
- package/dist/i18n/i18n.d.ts +27 -12
- package/dist/i18n/template.d.ts +27 -12
- package/dist/i18n/zz.d.ts +27 -12
- package/dist/model/api.d.ts +14 -20
- package/dist/model/api.js +72 -210
- package/dist/model/api.js.map +1 -1
- package/dist/model/auth.d.ts +14 -6
- package/dist/model/auth.js +37 -35
- package/dist/model/auth.js.map +1 -1
- package/dist/model/equipment.d.ts +3 -1
- package/dist/model/equipment.js +6 -1
- package/dist/model/equipment.js.map +1 -1
- package/dist/model/mqtt.d.ts +33 -0
- package/dist/model/mqtt.js +221 -0
- package/dist/model/mqtt.js.map +1 -0
- package/dist/model/recoverySimulator.d.ts +2 -3
- package/dist/model/recoverySimulator.js +9 -13
- package/dist/model/recoverySimulator.js.map +1 -1
- package/dist/model/thermostat.d.ts +1 -1
- package/dist/model/thermostat.js +2 -2
- package/dist/model/thermostat.js.map +1 -1
- package/dist/model/types.d.ts +6 -2
- package/dist/model/types.js +0 -21
- package/dist/model/types.js.map +1 -1
- package/dist/model/waterHeater.d.ts +2 -4
- package/dist/model/waterHeater.js +7 -13
- package/dist/model/waterHeater.js.map +1 -1
- package/dist/tools/storage.d.ts +10 -3
- package/dist/tools/storage.js +68 -18
- package/dist/tools/storage.js.map +1 -1
- package/dist/tools/time.d.ts +1 -0
- package/dist/tools/time.js +1 -0
- package/dist/tools/time.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,11 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to homebridge-econet-rheem will be documented in this file.
|
|
4
4
|
|
|
5
|
-
## 1.
|
|
5
|
+
## 1.6.0-beta.0 (2025-11-13)
|
|
6
6
|
|
|
7
7
|
### ⚠️ Feedback Request
|
|
8
8
|
Are you using a Friedrich HVAC device with this plugin? If so, please comment [here](https://github.com/mpatfield/homebridge-econet-rheem/issues/85) indicating whether or not it is working corretly.
|
|
9
9
|
|
|
10
|
+
### Added
|
|
11
|
+
TODO Device details
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
TODO storage consolidation
|
|
15
|
+
|
|
16
|
+
### Notes
|
|
17
|
+
Do you have a leak sensor and/or shut off valve on your water heater? Click [here](https://github.com/mpatfield/homebridge-econet-rheem/issues/4) for instructions on how you can help add this feature.
|
|
18
|
+
|
|
19
|
+
## 1.5.19 (2025-11-01)
|
|
20
|
+
|
|
10
21
|
### Fixed
|
|
11
22
|
- Minor issues with Friedrich devices
|
|
12
23
|
|
|
@@ -14,9 +25,6 @@ Are you using a Friedrich HVAC device with this plugin? If so, please comment [h
|
|
|
14
25
|
- ⚠️ Dropped [official support](https://github.com/homebridge/homebridge/wiki/How-To-Update-Node.js) for Node.js v18 and added Node.js v24
|
|
15
26
|
- Updated dependencies
|
|
16
27
|
|
|
17
|
-
### Notes
|
|
18
|
-
Do you have a leak sensor and/or shut off valve on your water heater? Click [here](https://github.com/mpatfield/homebridge-econet-rheem/issues/4) for instructions on how you can help add this feature.
|
|
19
|
-
|
|
20
28
|
## 1.5.18 (2025-10-21)
|
|
21
29
|
|
|
22
30
|
### Changed
|
package/README.md
CHANGED
|
@@ -19,21 +19,18 @@ Homebridge plugin for HomeKit control of Rheem water heaters and thermostats
|
|
|
19
19
|
|
|
20
20
|
This plugin is independently developed and is not in any way affiliated with or endorsed by Rheem. Any issues or damage resulting from use of this plugin are not the fault of the developer. Use at your own risk.
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
> This plugin uses an unofficial EcoNet API and could stop working at any time without warning.
|
|
22
|
+
It uses an unofficial EcoNet API and could stop working at any time without warning.
|
|
24
23
|
|
|
25
24
|
## Limitations
|
|
26
25
|
|
|
27
26
|
* Water Heaters
|
|
28
|
-
*
|
|
29
|
-
* It is not possible to switch modes, only enable/disable and adjust the desired temperature
|
|
27
|
+
* Switching modes is not possible, only enable/disable and adjusting desired temperature
|
|
30
28
|
* Celcius should work but is untested
|
|
31
29
|
* *Let me know if you have successfully used ºC so I can remove this*
|
|
32
30
|
|
|
33
31
|
## Account Sharing
|
|
34
32
|
|
|
35
|
-
|
|
36
|
-
> It is recommended to use a dedicated account for use with Homebridge.
|
|
33
|
+
⚠️ It is recommended to use a dedicated account for use with Homebridge.
|
|
37
34
|
|
|
38
35
|
This is because Rheem only allows one device to be subscribed to real-time updates, so if you open the Rheem app then the Homebridge plugin will silently stop receiving updates.
|
|
39
36
|
|
|
@@ -41,6 +38,39 @@ The plugin will eventually resubscribe after being idle for an extended period,
|
|
|
41
38
|
|
|
42
39
|
To get started, visit "Account Sharing" in the Rheem app menu.
|
|
43
40
|
|
|
41
|
+
## Device Details
|
|
42
|
+
|
|
43
|
+
TODO
|
|
44
|
+
|
|
45
|
+
* Current temperature is not supported by the API so recovery temperature is simulated
|
|
46
|
+
|
|
47
|
+
https://community.hubitat.com/t/rheem-econet-integration-maintained-by-kris-linquist/116913/72
|
|
48
|
+
|
|
49
|
+
To obtain these credentials, connect to your water heater's wifi and go to https://192.168.10.1/cred
|
|
50
|
+
|
|
51
|
+
1. Put it in Wi-Fi setup mode
|
|
52
|
+
• On most Rheem EcoNet controllers, press and hold the Wi-Fi or Settings → Wi-Fi Setup option until the screen shows “Ready to Connect.”
|
|
53
|
+
• The heater will broadcast an EcoNet-XXXX network.
|
|
54
|
+
2. Connect to that network
|
|
55
|
+
• Use your phone/laptop to join the EcoNet network.
|
|
56
|
+
• Retrieve any info you need (e.g., by visiting 192.168.10.1).
|
|
57
|
+
3. Reconnect it to your home network
|
|
58
|
+
• Open the Rheem EcoNet app.
|
|
59
|
+
• Choose Add Device → Water Heater → Connect to Wi-Fi → select your home SSID and enter your Wi-Fi password.
|
|
60
|
+
• Wait until the heater display says “Connected.”
|
|
61
|
+
|
|
62
|
+
{
|
|
63
|
+
"SYSTEM-KEY": "e2e699cb0bb0bbb88fc8858cb5a401",
|
|
64
|
+
"SYSTEM-SECRET": "E2E699CB0BE6C6FADDB1B0BC9A20",
|
|
65
|
+
"ACTIVE-KEY": "2414781549052183",
|
|
66
|
+
"DEVICE-NAME": "7176847464350464",
|
|
67
|
+
"IDENTITY": "b62a0130-1fef-05ae-e150-16fcc8a94754",
|
|
68
|
+
"AUTH_URL": "rheem.clearblade.com",
|
|
69
|
+
"CLOUDURL": "rheem.clearblade.com",
|
|
70
|
+
"SAUTHPOR": 8906,
|
|
71
|
+
"SCLODPOR": 1884
|
|
72
|
+
}
|
|
73
|
+
|
|
44
74
|
## Configuration
|
|
45
75
|
|
|
46
76
|
Using the Homebridge Config UI is the easiest way to set up this plugin. However, if you wish to do things manually then you will need to add the following to your Homebridge `config.json`:
|
package/config.schema.json
CHANGED
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
"customUiPath": "./dist/homebridge-ui",
|
|
7
7
|
"schema": {
|
|
8
8
|
"type": "object",
|
|
9
|
-
"required": ["email", "password"],
|
|
10
9
|
"properties": {
|
|
11
10
|
"name": {
|
|
12
11
|
"type": "string",
|
|
@@ -15,39 +14,140 @@
|
|
|
15
14
|
"email": {
|
|
16
15
|
"title": "${config.title.email}",
|
|
17
16
|
"type": "string",
|
|
18
|
-
"format": "email"
|
|
19
|
-
"description": "${config.description.email}"
|
|
17
|
+
"format": "email"
|
|
20
18
|
},
|
|
21
19
|
"password": {
|
|
22
20
|
"title": "${config.title.password}",
|
|
23
|
-
"type": "string"
|
|
24
|
-
"description": "${config.description.password}"
|
|
21
|
+
"type": "string"
|
|
25
22
|
},
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
23
|
+
"devices": {
|
|
24
|
+
"type": "array",
|
|
25
|
+
"items": {
|
|
26
|
+
"type": "object",
|
|
27
|
+
"properties": {
|
|
28
|
+
"serialNumber": {
|
|
29
|
+
"type": "string",
|
|
30
|
+
"title": "${config.title.serialNumber}"
|
|
31
|
+
},
|
|
32
|
+
"deviceName": {
|
|
33
|
+
"type": "string",
|
|
34
|
+
"title": "${config.title.deviceName}"
|
|
35
|
+
},
|
|
36
|
+
"activeKey": {
|
|
37
|
+
"type": "string",
|
|
38
|
+
"title": "${config.title.activeKey}"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"allOf": [
|
|
42
|
+
{
|
|
43
|
+
"if": {
|
|
44
|
+
"required": ["serialNumber"]
|
|
45
|
+
},
|
|
46
|
+
"then": {
|
|
47
|
+
"required": ["deviceName", "activeKey"]
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"if": {
|
|
52
|
+
"required": ["deviceName"]
|
|
53
|
+
},
|
|
54
|
+
"then": {
|
|
55
|
+
"required": ["serialNumber", "activeKey"]
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"if": {
|
|
60
|
+
"required": ["activeKey"]
|
|
61
|
+
},
|
|
62
|
+
"then": {
|
|
63
|
+
"required": ["serialNumber", "deviceName"]
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
]
|
|
67
|
+
}
|
|
31
68
|
},
|
|
32
69
|
"verbose": {
|
|
33
70
|
"title": "${config.title.verbose}",
|
|
34
71
|
"type": "boolean",
|
|
35
|
-
"required": false,
|
|
36
72
|
"description": "${config.description.verbose}"
|
|
73
|
+
},
|
|
74
|
+
"wh_sim_disable": {
|
|
75
|
+
"title": "${config.title.wh_sim_disable}",
|
|
76
|
+
"type": "boolean",
|
|
77
|
+
"description": "${config.description.wh_sim_disable}"
|
|
37
78
|
}
|
|
38
|
-
}
|
|
79
|
+
},
|
|
80
|
+
"allOf": [
|
|
81
|
+
{ "required": ["email", "password"] }
|
|
82
|
+
]
|
|
39
83
|
},
|
|
40
84
|
"layout": [
|
|
41
85
|
{
|
|
42
86
|
"type": "fieldset",
|
|
43
|
-
"
|
|
44
|
-
"
|
|
87
|
+
"description": "${config.description.account}",
|
|
88
|
+
"notitle": true,
|
|
89
|
+
"items": [
|
|
90
|
+
{
|
|
91
|
+
"type": "div",
|
|
92
|
+
"displayFlex": true,
|
|
93
|
+
"flex-direction": "row",
|
|
94
|
+
"items": [
|
|
95
|
+
{
|
|
96
|
+
"key": "email",
|
|
97
|
+
"flex": "0 0 50%"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"key": "password",
|
|
101
|
+
"flex": "0 0 50%"
|
|
102
|
+
}
|
|
103
|
+
]
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"type": "div",
|
|
109
|
+
"displayFlex": true,
|
|
110
|
+
"flex-direction": "row",
|
|
111
|
+
"items": [
|
|
112
|
+
{
|
|
113
|
+
"key": "verbose",
|
|
114
|
+
"flex": "0 1 auto"
|
|
115
|
+
}
|
|
116
|
+
]
|
|
45
117
|
},
|
|
46
118
|
{
|
|
47
119
|
"type": "fieldset",
|
|
48
|
-
"title": "
|
|
49
|
-
"
|
|
50
|
-
"items": [
|
|
120
|
+
"title": "${config.title.devices}",
|
|
121
|
+
"description": "${config.description.devices}",
|
|
122
|
+
"items": [
|
|
123
|
+
{
|
|
124
|
+
"type": "array",
|
|
125
|
+
"title": "${config.title.device}",
|
|
126
|
+
"notitle": true,
|
|
127
|
+
"key": "devices",
|
|
128
|
+
"items": [
|
|
129
|
+
{
|
|
130
|
+
"type": "div",
|
|
131
|
+
"displayFlex": true,
|
|
132
|
+
"flex-direction": "row",
|
|
133
|
+
"items": [
|
|
134
|
+
{
|
|
135
|
+
"key": "devices[].serialNumber",
|
|
136
|
+
"flex": "0 0 33%"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"key": "devices[].deviceName",
|
|
140
|
+
"flex": "0 0 33%"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"key": "devices[].activeKey",
|
|
144
|
+
"flex": "0 0 33%"
|
|
145
|
+
}
|
|
146
|
+
]
|
|
147
|
+
}
|
|
148
|
+
]
|
|
149
|
+
}
|
|
150
|
+
]
|
|
51
151
|
}
|
|
52
152
|
]
|
|
53
153
|
}
|
|
@@ -5,6 +5,7 @@ import { setLanguage, strings } from '../i18n/i18n.js';
|
|
|
5
5
|
import { EconetApi } from '../model/api.js';
|
|
6
6
|
import { EquipmentType } from '../model/constants.js';
|
|
7
7
|
import { Log } from '../tools/log.js';
|
|
8
|
+
import { Storage } from '../tools/storage.js';
|
|
8
9
|
import getVersion from '../tools/version.js';
|
|
9
10
|
export class EconetRheemPlatform {
|
|
10
11
|
config;
|
|
@@ -38,15 +39,17 @@ export class EconetRheemPlatform {
|
|
|
38
39
|
this.econetApi?.teardown();
|
|
39
40
|
}
|
|
40
41
|
async setup() {
|
|
42
|
+
await Storage.init(this.api.user.persistPath());
|
|
41
43
|
const email = this.config.email;
|
|
42
44
|
const password = this.config.password;
|
|
43
45
|
const debugMQTT = this.config.mqtt_debug;
|
|
46
|
+
const devices = this.config.devices || [];
|
|
44
47
|
if (!email || !password) {
|
|
45
48
|
this.log.error(strings.startup.badConfig);
|
|
46
49
|
return;
|
|
47
50
|
}
|
|
48
51
|
try {
|
|
49
|
-
this.econetApi = await EconetApi.connect(this.log, email, password,
|
|
52
|
+
this.econetApi = await EconetApi.connect(this.log, email, password, devices, debugMQTT);
|
|
50
53
|
const equipments = Array.from(this.econetApi.equipments.values());
|
|
51
54
|
if (equipments.length === 0) {
|
|
52
55
|
this.log.warning(strings.startup.noEquipment);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"platform.js","sourceRoot":"","sources":["../../src/homebridge/platform.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAE3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,sCAAsC,CAAC;AAC3E,OAAO,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AAE7E,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAEvD,OAAO,EAAE,SAAS,EAAG,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAKtD,OAAO,EAAE,GAAG,EAAE,MAAM,iBAAiB,CAAC;AACtC,OAAO,UAAU,MAAM,qBAAqB,CAAC;AAE7C,MAAM,OAAO,mBAAmB;IAWZ;IACA;IAXF,OAAO,CAAC;IACR,cAAc,CAAC;IAEf,GAAG,CAAM;IAER,WAAW,GAAmC,IAAI,GAAG,EAAE,CAAC;IACjE,SAAS,GAAqB,IAAI,CAAC;IAE3C,YACE,MAAc,EACE,MAAsB,EACtB,GAAQ;QADR,WAAM,GAAN,MAAM,CAAgB;QACtB,QAAG,GAAH,GAAG,CAAK;QAGxB,MAAM,QAAQ,GAAG,IAAI,CAAC,cAAc,EAAE,CAAC,eAAe,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;QAC9E,WAAW,CAAC,QAAQ,CAAC,CAAC;QAEtB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,OAAO,CAAC;QACpC,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,cAAc,CAAC;QAElD,IAAI,CAAC,GAAG,GAAG,IAAI,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC;QAE3C,IAAI,CAAC,GAAG,CAAC,MAAM,CACb,oDAAoD,EACpD,UAAU,EAAE,EACZ,OAAO,CAAC,QAAQ,EAChB,OAAO,CAAC,OAAO,EACf,GAAG,CAAC,aAAa,EACjB,GAAG,CAAC,GAAG,CAAC,iBAAiB,EAAE,CAC5B,CAAC;QAEF,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,oBAAoB,EAAE,GAAG,EAAE;YACrC,IAAI,CAAC,KAAK,EAAE,CAAC;QACf,CAAC,CAAC,CAAC;QAEH,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,UAAU,EAAE,GAAG,EAAE;YAC3B,IAAI,CAAC,QAAQ,EAAE,CAAC;QAClB,CAAC,CAAC,CAAC;IACL,CAAC;IAED,kBAAkB,CAAC,SAA4B;QAC7C,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,eAAe,EAAE,SAAS,CAAC,WAAW,CAAC,CAAC;QACxE,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,SAAS,CAAC,OAAO,CAAC,YAAY,EAAE,SAAS,CAAC,CAAC;IAClE,CAAC;IAEO,QAAQ;QACd,IAAI,CAAC,SAAS,EAAE,QAAQ,EAAE,CAAC;IAC7B,CAAC;IAEO,KAAK,CAAC,KAAK;QACjB,MAAM,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,
|
|
1
|
+
{"version":3,"file":"platform.js","sourceRoot":"","sources":["../../src/homebridge/platform.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This is the name of the platform that users will use to register the plugin in the Homebridge config.json
|
|
3
|
-
*/
|
|
4
1
|
export declare const PLATFORM_NAME = "HomebridgeEconetRheem";
|
|
5
|
-
/**
|
|
6
|
-
* This must match the name of your plugin as defined the package.json `name` property
|
|
7
|
-
*/
|
|
8
2
|
export declare const PLUGIN_NAME = "homebridge-econet-rheem";
|
|
3
|
+
export declare const CLEARBLADE_HOST = "rheem.clearblade.com";
|
|
4
|
+
export declare const CLEARBLADE_KEY = "e2e699cb0bb0bbb88fc8858cb5a401";
|
|
5
|
+
export declare const CLEARBLADE_SECRET = "E2E699CB0BE6C6FADDB1B0BC9A20";
|
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This is the name of the platform that users will use to register the plugin in the Homebridge config.json
|
|
3
|
-
*/
|
|
4
1
|
export const PLATFORM_NAME = 'HomebridgeEconetRheem';
|
|
5
|
-
/**
|
|
6
|
-
* This must match the name of your plugin as defined the package.json `name` property
|
|
7
|
-
*/
|
|
8
2
|
export const PLUGIN_NAME = 'homebridge-econet-rheem';
|
|
3
|
+
export const CLEARBLADE_HOST = 'rheem.clearblade.com';
|
|
4
|
+
export const CLEARBLADE_KEY = 'e2e699cb0bb0bbb88fc8858cb5a401';
|
|
5
|
+
export const CLEARBLADE_SECRET = 'E2E699CB0BE6C6FADDB1B0BC9A20';
|
|
9
6
|
//# sourceMappingURL=settings.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"settings.js","sourceRoot":"","sources":["../../src/homebridge/settings.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"settings.js","sourceRoot":"","sources":["../../src/homebridge/settings.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,aAAa,GAAG,uBAAuB,CAAC;AACrD,MAAM,CAAC,MAAM,WAAW,GAAG,yBAAyB,CAAC;AAErD,MAAM,CAAC,MAAM,eAAe,GAAG,sBAAsB,CAAC;AACtD,MAAM,CAAC,MAAM,cAAc,GAAG,gCAAgC,CAAC;AAC/D,MAAM,CAAC,MAAM,iBAAiB,GAAG,8BAA8B,CAAC"}
|
package/dist/i18n/en.d.ts
CHANGED
|
@@ -2,8 +2,8 @@ declare const en: {
|
|
|
2
2
|
config: {
|
|
3
3
|
continue: string;
|
|
4
4
|
description: {
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
account: string;
|
|
6
|
+
devices: string;
|
|
7
7
|
verbose: string;
|
|
8
8
|
wh_sim_disable: string;
|
|
9
9
|
};
|
|
@@ -11,8 +11,13 @@ declare const en: {
|
|
|
11
11
|
support: string;
|
|
12
12
|
thankYou: string;
|
|
13
13
|
title: {
|
|
14
|
+
activeKey: string;
|
|
15
|
+
device: string;
|
|
16
|
+
devices: string;
|
|
17
|
+
deviceName: string;
|
|
14
18
|
email: string;
|
|
15
19
|
password: string;
|
|
20
|
+
serialNumber: string;
|
|
16
21
|
verbose: string;
|
|
17
22
|
wh_sim_disable: string;
|
|
18
23
|
};
|
|
@@ -54,16 +59,26 @@ declare const en: {
|
|
|
54
59
|
retryInSeconds: string;
|
|
55
60
|
};
|
|
56
61
|
mqtt: {
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
62
|
+
deviceAuthMissing: string;
|
|
63
|
+
deviceClientError: string;
|
|
64
|
+
deviceConnected: string;
|
|
65
|
+
deviceConnectionClosed: string;
|
|
66
|
+
deviceConnectionError: string;
|
|
67
|
+
deviceIdleConnection: string;
|
|
68
|
+
deviceNotConnected: string;
|
|
69
|
+
deviceParseFailed: string;
|
|
70
|
+
deviceReconnectInMinutes: string;
|
|
71
|
+
deviceReconnectInSeconds: string;
|
|
72
|
+
userAuthMissing: string;
|
|
73
|
+
userClientError: string;
|
|
74
|
+
userConnected: string;
|
|
75
|
+
userConnectionClosed: string;
|
|
76
|
+
userConnectionError: string;
|
|
77
|
+
userIdleConnection: string;
|
|
78
|
+
userNotConnected: string;
|
|
79
|
+
userParseFailed: string;
|
|
80
|
+
userReconnectInMinutes: string;
|
|
81
|
+
userReconnectInSeconds: string;
|
|
67
82
|
unstableConnection: string;
|
|
68
83
|
};
|
|
69
84
|
startup: {
|
package/dist/i18n/en.js
CHANGED
|
@@ -2,8 +2,8 @@ const en = {
|
|
|
2
2
|
config: {
|
|
3
3
|
continue: 'Continue %s',
|
|
4
4
|
description: {
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
account: 'Dedicated account recommended. See documentation.',
|
|
6
|
+
devices: 'Providing additional device details gives a better experience. See documentation for details.',
|
|
7
7
|
verbose: 'Enable additional debug logging',
|
|
8
8
|
wh_sim_disable: 'See documentation for details',
|
|
9
9
|
},
|
|
@@ -11,8 +11,13 @@ const en = {
|
|
|
11
11
|
support: 'For documentation and support please visit %s',
|
|
12
12
|
thankYou: 'Thank you for installing Homebridge Econet Rheem',
|
|
13
13
|
title: {
|
|
14
|
+
activeKey: 'Active Key',
|
|
15
|
+
device: 'Device',
|
|
16
|
+
devices: 'Devices',
|
|
17
|
+
deviceName: 'Device Name',
|
|
14
18
|
email: 'Email',
|
|
15
19
|
password: 'Password',
|
|
20
|
+
serialNumber: 'Serial Number',
|
|
16
21
|
verbose: 'Verbose',
|
|
17
22
|
wh_sim_disable: 'Disable Water Heater Temperature Simulator',
|
|
18
23
|
},
|
|
@@ -54,17 +59,27 @@ const en = {
|
|
|
54
59
|
retryInSeconds: 'Request failed. Retrying in %s seconds…',
|
|
55
60
|
},
|
|
56
61
|
mqtt: {
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
62
|
+
deviceAuthMissing: 'MQTT is missing device auth',
|
|
63
|
+
deviceClientError: 'Device client error:',
|
|
64
|
+
deviceConnected: 'Device client connected and listening for updates…',
|
|
65
|
+
deviceConnectionClosed: 'Device client connection closed',
|
|
66
|
+
deviceConnectionError: 'Device client cannot connect',
|
|
67
|
+
deviceIdleConnection: 'Idle device client connection',
|
|
68
|
+
deviceNotConnected: 'Device client not connected',
|
|
69
|
+
deviceParseFailed: 'Failed to parse device client message:',
|
|
70
|
+
deviceReconnectInMinutes: 'Will attempt to device client reconnect in %s minutes…',
|
|
71
|
+
deviceReconnectInSeconds: 'Will attempt to device client reconnect in %s seconds…',
|
|
72
|
+
userAuthMissing: 'MQTT is missing user auth',
|
|
73
|
+
userClientError: 'User client error:',
|
|
74
|
+
userConnected: 'User client connected and listening for updates…',
|
|
75
|
+
userConnectionClosed: 'User client connection closed',
|
|
76
|
+
userConnectionError: 'User client cannot connect',
|
|
77
|
+
userIdleConnection: 'Idle user client connection',
|
|
78
|
+
userNotConnected: 'User client not connected',
|
|
79
|
+
userParseFailed: 'Failed to parse user client message:',
|
|
80
|
+
userReconnectInMinutes: 'Will attempt to user client reconnect in %s minutes…',
|
|
81
|
+
userReconnectInSeconds: 'Will attempt to user client reconnect in %s seconds…',
|
|
82
|
+
unstableConnection: 'MQTT trouble staying connected',
|
|
68
83
|
},
|
|
69
84
|
startup: {
|
|
70
85
|
badConfig: 'One or more required variables are missing from the config. Please check the documentation.',
|
package/dist/i18n/en.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en.js","sourceRoot":"","sources":["../../src/i18n/en.ts"],"names":[],"mappings":"AAAA,MAAM,EAAE,GAAG;IAET,MAAM,EAAE;QACN,QAAQ,EAAE,aAAa;QAEvB,WAAW,EAAE;YACX,
|
|
1
|
+
{"version":3,"file":"en.js","sourceRoot":"","sources":["../../src/i18n/en.ts"],"names":[],"mappings":"AAAA,MAAM,EAAE,GAAG;IAET,MAAM,EAAE;QACN,QAAQ,EAAE,aAAa;QAEvB,WAAW,EAAE;YACX,OAAO,EAAE,mDAAmD;YAC5D,OAAO,EAAE,+FAA+F;YACxG,OAAO,EAAE,iCAAiC;YAC1C,cAAc,EAAE,+BAA+B;SAChD;QAED,MAAM,EAAE,gDAAgD;QACxD,OAAO,EAAE,+CAA+C;QACxD,QAAQ,EAAE,kDAAkD;QAE5D,KAAK,EAAE;YACL,SAAS,EAAE,YAAY;YACvB,MAAM,EAAE,QAAQ;YAChB,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,aAAa;YACzB,KAAK,EAAE,OAAO;YACd,QAAQ,EAAE,UAAU;YACpB,YAAY,EAAE,eAAe;YAC7B,OAAO,EAAE,SAAS;YAClB,cAAc,EAAE,4CAA4C;SAC7D;KACF;IAED,KAAK,EAAE;QACL,UAAU,EAAE,qBAAqB;QACjC,iBAAiB,EAAE,sBAAsB;QACzC,aAAa,EAAE,gBAAgB;QAC/B,YAAY,EAAE,uBAAuB;QACrC,gBAAgB,EAAE,sBAAsB;QACxC,YAAY,EAAE,iBAAiB;QAC/B,YAAY,EAAE,uBAAuB;QACrC,aAAa,EAAE,kBAAkB;QACjC,SAAS,EAAE,cAAc;QACzB,YAAY,EAAE,iBAAiB;QAC/B,aAAa,EAAE,kBAAkB;KAClC;IAED,SAAS,EAAE;QACT,cAAc,EAAE,gEAAgE;QAChF,cAAc,EAAE,gEAAgE;QAChF,eAAe,EAAE,mDAAmD;QACpE,UAAU,EAAE,YAAY;QACxB,WAAW,EAAE,0BAA0B;QACvC,WAAW,EAAE,gCAAgC;QAC7C,gBAAgB,EAAE,oBAAoB;QACtC,WAAW,EAAE,cAAc;KAC5B;IAED,OAAO,EAAE;QACP,KAAK,EAAE,QAAQ;QACf,QAAQ,EAAE,kBAAkB;QAC5B,SAAS,EAAE,WAAW;KACvB;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,4BAA4B;QACzC,cAAc,EAAE,8BAA8B;QAC9C,cAAc,EAAE,+BAA+B;QAC/C,YAAY,EAAE,2BAA2B;QACzC,cAAc,EAAE,yCAAyC;QACzD,cAAc,EAAE,yCAAyC;KAC1D;IAED,IAAI,EAAE;QACJ,iBAAiB,EAAE,6BAA6B;QAChD,iBAAiB,EAAE,sBAAsB;QACzC,eAAe,EAAE,oDAAoD;QACrE,sBAAsB,EAAE,iCAAiC;QACzD,qBAAqB,EAAE,8BAA8B;QACrD,oBAAoB,EAAE,+BAA+B;QACrD,kBAAkB,EAAE,6BAA6B;QACjD,iBAAiB,EAAE,wCAAwC;QAC3D,wBAAwB,EAAE,wDAAwD;QAClF,wBAAwB,EAAE,wDAAwD;QAClF,eAAe,EAAE,2BAA2B;QAC5C,eAAe,EAAE,oBAAoB;QACrC,aAAa,EAAE,kDAAkD;QACjE,oBAAoB,EAAE,+BAA+B;QACrD,mBAAmB,EAAE,4BAA4B;QACjD,kBAAkB,EAAE,6BAA6B;QACjD,gBAAgB,EAAE,2BAA2B;QAC7C,eAAe,EAAE,sCAAsC;QACvD,sBAAsB,EAAE,sDAAsD;QAC9E,sBAAsB,EAAE,sDAAsD;QAC9E,kBAAkB,EAAE,gCAAgC;KACrD;IAED,OAAO,EAAE;QACP,SAAS,EAAE,6FAA6F;QACxG,YAAY,EAAE,oBAAoB;QAClC,WAAW,EAAE,oBAAoB;QACjC,YAAY,EAAE,kBAAkB;QAChC,eAAe,EAAE,mBAAmB;QACpC,aAAa,EAAE,mBAAmB;QAClC,WAAW,EAAE,eAAe;QAC5B,OAAO,EAAE;YACP,mHAAmH;YACnH,8EAA8E;YAC9E,mFAAmF;YACnF,2HAA2H;SAC5H;KACF;CACF,CAAC;AAEF,eAAe,EAAE,CAAC"}
|
package/dist/i18n/i18n.d.ts
CHANGED
|
@@ -11,8 +11,8 @@ declare const translations: {
|
|
|
11
11
|
config: {
|
|
12
12
|
continue: string;
|
|
13
13
|
description: {
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
account: string;
|
|
15
|
+
devices: string;
|
|
16
16
|
verbose: string;
|
|
17
17
|
wh_sim_disable: string;
|
|
18
18
|
};
|
|
@@ -20,8 +20,13 @@ declare const translations: {
|
|
|
20
20
|
support: string;
|
|
21
21
|
thankYou: string;
|
|
22
22
|
title: {
|
|
23
|
+
activeKey: string;
|
|
24
|
+
device: string;
|
|
25
|
+
devices: string;
|
|
26
|
+
deviceName: string;
|
|
23
27
|
email: string;
|
|
24
28
|
password: string;
|
|
29
|
+
serialNumber: string;
|
|
25
30
|
verbose: string;
|
|
26
31
|
wh_sim_disable: string;
|
|
27
32
|
};
|
|
@@ -63,16 +68,26 @@ declare const translations: {
|
|
|
63
68
|
retryInSeconds: string;
|
|
64
69
|
};
|
|
65
70
|
mqtt: {
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
71
|
+
deviceAuthMissing: string;
|
|
72
|
+
deviceClientError: string;
|
|
73
|
+
deviceConnected: string;
|
|
74
|
+
deviceConnectionClosed: string;
|
|
75
|
+
deviceConnectionError: string;
|
|
76
|
+
deviceIdleConnection: string;
|
|
77
|
+
deviceNotConnected: string;
|
|
78
|
+
deviceParseFailed: string;
|
|
79
|
+
deviceReconnectInMinutes: string;
|
|
80
|
+
deviceReconnectInSeconds: string;
|
|
81
|
+
userAuthMissing: string;
|
|
82
|
+
userClientError: string;
|
|
83
|
+
userConnected: string;
|
|
84
|
+
userConnectionClosed: string;
|
|
85
|
+
userConnectionError: string;
|
|
86
|
+
userIdleConnection: string;
|
|
87
|
+
userNotConnected: string;
|
|
88
|
+
userParseFailed: string;
|
|
89
|
+
userReconnectInMinutes: string;
|
|
90
|
+
userReconnectInSeconds: string;
|
|
76
91
|
unstableConnection: string;
|
|
77
92
|
};
|
|
78
93
|
startup: {
|
package/dist/i18n/template.d.ts
CHANGED
|
@@ -2,8 +2,8 @@ declare const REPLACE_THIS_WITH_ISO_CODE: {
|
|
|
2
2
|
config: {
|
|
3
3
|
continue: string;
|
|
4
4
|
description: {
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
account: string;
|
|
6
|
+
devices: string;
|
|
7
7
|
verbose: string;
|
|
8
8
|
wh_sim_disable: string;
|
|
9
9
|
};
|
|
@@ -11,8 +11,13 @@ declare const REPLACE_THIS_WITH_ISO_CODE: {
|
|
|
11
11
|
support: string;
|
|
12
12
|
thankYou: string;
|
|
13
13
|
title: {
|
|
14
|
+
activeKey: string;
|
|
15
|
+
device: string;
|
|
16
|
+
devices: string;
|
|
17
|
+
deviceName: string;
|
|
14
18
|
email: string;
|
|
15
19
|
password: string;
|
|
20
|
+
serialNumber: string;
|
|
16
21
|
verbose: string;
|
|
17
22
|
wh_sim_disable: string;
|
|
18
23
|
};
|
|
@@ -54,16 +59,26 @@ declare const REPLACE_THIS_WITH_ISO_CODE: {
|
|
|
54
59
|
retryInSeconds: string;
|
|
55
60
|
};
|
|
56
61
|
mqtt: {
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
62
|
+
deviceAuthMissing: string;
|
|
63
|
+
deviceClientError: string;
|
|
64
|
+
deviceConnected: string;
|
|
65
|
+
deviceConnectionClosed: string;
|
|
66
|
+
deviceConnectionError: string;
|
|
67
|
+
deviceIdleConnection: string;
|
|
68
|
+
deviceNotConnected: string;
|
|
69
|
+
deviceParseFailed: string;
|
|
70
|
+
deviceReconnectInMinutes: string;
|
|
71
|
+
deviceReconnectInSeconds: string;
|
|
72
|
+
userAuthMissing: string;
|
|
73
|
+
userClientError: string;
|
|
74
|
+
userConnected: string;
|
|
75
|
+
userConnectionClosed: string;
|
|
76
|
+
userConnectionError: string;
|
|
77
|
+
userIdleConnection: string;
|
|
78
|
+
userNotConnected: string;
|
|
79
|
+
userParseFailed: string;
|
|
80
|
+
userReconnectInMinutes: string;
|
|
81
|
+
userReconnectInSeconds: string;
|
|
67
82
|
unstableConnection: string;
|
|
68
83
|
};
|
|
69
84
|
startup: {
|