homebridge-eldom-heater
v1.0.13
Published
Eldom heater plugin for homebridge: https://github.com/homebridge/homebridge
Downloads
5
Readme
homebridge-eldom-heater
Homebridge plugin to control a Eldom Heater (Convector)
Prerequisites
You nead to catch network traffic from Eldom app to get token and other values needed for this plugin.
- Authentication Token (from header)
- Ionic-IDD (from header)
- ID (from body)
- CRC (from body)
I have done this with Proxyman for iOS
Installation
- Install homebridge
- Install this plugin:
npm install -g homebridge-eldom-heater
- Update your
config.json
file (See below).
Configuration example
"accessories": [
{
"name": "Eldom Heater",
"device_id": "this is Ionic-IDD from above",
"device_body_id": "this is ID from above",
"bearer": "this is the Token from above",
"crc": "CRC from above",
"maxTemp": 30,
"minTemp": 10,
"pullInterval": 10000,
"manufacturer": "Eldom",
"model": "Heater",
"accessory": "EldomHeater"
},
]