Homebridge plugin for HomeKit control of Rheem water heaters and thermostats
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.
[!NOTE] This plugin uses an unofficial EcoNet API and could stop working at any time without warning.
- Water Heaters
- Current temperature is not supported by the API so recovery temperature is simulated
- It is not possible to switch modes, only enable/disable and adjust the desired temperature
- Celcius should work but is untested
- Let me know if you have successfully used ºC so I can remove this
[!NOTE] It is recommended to use a dedicated account for use with Homebridge.
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.
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
:
{
"platforms": [
{
"platform": "HomebridgeEconetRheem",
"email": "your_econet_email",
"password": "your_econet_password",
"wh_sim_disable": false,
"verbose": false
}
]
}
-
platform
: (Required) Must be "HomebridgeEconetRheem". -
email
: (Required) Your Econet account email. -
password
: (Required) Your Econet account password. -
wh_sim_disable
: (Optional) Set totrue
to disable and use set_point as the current temperature. -
verbose
: (Optional) Set totrue
to enable additional debug logging. Default isfalse
.
Ideas and bug reports are welcome. To assist:
-
Turn on "Verbose" logging in the plugin config under "Advanced Settings"
-
Run Homebridge in debug mode
Homebridge Settings -> Startup & Environment -> Homebridge Debug Mode -D
-
Capture the JSON responses in the Logs for HTTP and MQTT state changes
-
Submit the captured data via a GitHub issue or pull request.
Your contributions will help enhance the plugin's functionality and device support.
@w1ll1am23 for earlier work done in pyeconet, a Python 3 interface to the EcoNet API
@r3tr3ad for helping debug the thermostat implementation.
Keryan Belahcene for creating the Flume header logo which I adapted for this plugin
And to the amazing creators/contributors of Homebridge who made this plugin possible!