1.0.13 • Published 2 years ago
homebridge-eldom-heater v1.0.13
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. 1. Authentication Token (from header) 2. Ionic-IDD (from header) 3. ID (from body) 4. 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.jsonfile (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"
  },
]