In this plugin you will be able to add your Ebeco WiFi-ready EB-Therm 500 to HomeBridge and controling it through Siri and Home App.
Assuming you have homebridge installed and set up, you can run below command to install this plugin
npm install -g @devwithimagination/homebridge-ebeco
Then, you can add the platform configuration to your config.json or you can configure it throguh the UI directly.
See config-sample.json
for an example.
We will need to input your username and password for the Ebeco Connect app that you setup with the device.
"platforms": [
// This is the config for this plugin
{
"platform": "Ebeco",
"name": "Ebeco",
"plugin_map": {
"plugin_name": "@devwithimagination/homebridge-ebeco"
},
"username": "YOUR EBECO CONNECT USERNAME",
"password": "YOUR EBECO CONNECT PASSWORD"
}
// End of the config
],
- Heat On/Off and target tempeture
- All the devices will be added if you have more than one, choosing which not to add will be added to if more people are asking for it.
- Making a schedule through the Ebeco Connect app will override the changes in the plugin. So setting up a degree here and having a schedule to change it to something else in the app later will override the plugin.
The configuration for this plugin includes an extra apiHost
parameter which can be used to set a different API host from the real one. A docker-compose.yml
file is included which runs a WireMock container including mock request/response cycles for the API.