-
Notifications
You must be signed in to change notification settings - Fork 0
Home
- Water Heaters
- Switching modes is not possible, only enable/disable and adjusting desired temperature
- Celcius should work but is untested
- Please let me know if you have successfully used ºC by creating a ticket so I can remove this
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.
The plugin will eventually resubscribe after being idle for an extended period, but you could miss updates in the meantime. Using a separate account will avoid this issue.
To get started, visit "Account Sharing" in the Rheem app menu.
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:
{
"name": "Econet Rheem",
"email": "string",
"password": "string",
"devices": [
{
"serialNumber": "string",
"deviceName": "string",
"activeKey": "string"
}
...
],
"verbose": false,
"platform": "HomebridgeEconetRheem"
}-
platform: (Required) Must be "HomebridgeEconetRheem" -
email: (Required) Your Econet account email -
password: (Required) Your Econet account password -
verbose: (Optional) Set totrueto enable additional debug logging. Default isfalse
While optional, providing additional details about your device gives more accurate real-time info, such as true current water temperature for water heaters. To use this feature, you will need to collect additional info about your device: serialNumber, deviceName, and activeKey.
The easiest way to get the serialNumber is by visiting this site. Enter your Econet username and password and it'll give you a list of serial numbers.
{
"name": "My Water Heater",
"serial_number": "00-11-22-33-44-aa-bb-cc-dd" <-- THIS IS YOUR SERIAL NUMBER
}For deviceName and activeKey, you will need to connect to your devices WiFi.
- Put your equipment in WiFi setup mode — for most controllers, press and hold the WiFi button
- Connect to the WiFi network (e.g. EcoNet-XXXX)
- Visit https://192.168.10.1/cred and you should see something like the following:
{
"SYSTEM-KEY":"e2e699cb0bb0bbb88fc8858cb5a401",
"SYSTEM-SECRET":"E2E699CB0BE6C6FADDB1B0BC9A20",
"ACTIVE-KEY":"0123456789abcdef", <-- THIS IS YOUR ACTIVE KEY
"DEVICE-NAME":"fedcba9876543210", <-- THIS IS YOUR DEVICE NAME
"IDENTITY":"13577054-594d-48a3-b02a-e49ed0af8f5e",
"AUTH_URL":"rheem.clearblade.com",
"CLOUDURL":"rheem.clearblade.com",
"SAUTHPOR":8906,
"SCLODPOR":1884
}- Copy and paste the pieces you need
- Reconnect your device to your WiFi network by opening the Rheem app and choosing "Add Product"
Enter the serialNumber, deviceName, and activeKey you collected from above in the Homebridge Econet Rheem config UI and restart Homebridge. You should now see more accurate real-time information in the Home app!