From 7f4e35ea58d00622930cc2676691e6b04ccb4dd3 Mon Sep 17 00:00:00 2001 From: Johan Date: Wed, 29 May 2024 18:00:53 +0200 Subject: [PATCH 1/2] Add support for HmIP-eTRV-CL --- src/devices/HmIPHeatingThermostat.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/devices/HmIPHeatingThermostat.ts b/src/devices/HmIPHeatingThermostat.ts index aa44f30..73b1807 100644 --- a/src/devices/HmIPHeatingThermostat.ts +++ b/src/devices/HmIPHeatingThermostat.ts @@ -53,6 +53,7 @@ export interface HistoryEvent { * HmIP-eTRV-B-2 * HmIP-eTRV-2 * HmIP-eTRV-C-2 + * HmIP-eTRV-CL */ export class HmIPHeatingThermostat extends HmIPGenericDevice implements Updateable { @@ -425,6 +426,7 @@ export class HmIPHeatingThermostat extends HmIPGenericDevice implements Updateab public static isHeatingThermostat(deviceType: string): boolean { return deviceType === 'HEATING_THERMOSTAT' || deviceType === 'HEATING_THERMOSTAT_COMPACT' + || deviceType === 'HEATING_THERMOSTAT_COMPACT_PLUS' || deviceType === 'HEATING_THERMOSTAT_EVO'; } From f52bfc9d835b3e93c91e0797b706ddc7ad3d6100 Mon Sep 17 00:00:00 2001 From: Johan Date: Wed, 29 May 2024 18:17:00 +0200 Subject: [PATCH 2/2] Update readme --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a00003e..f1bde5a 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ ## Homematic IP platform plugin for homebridge -Uses the unofficial HTTP API and WebSockets for continuous channel updates. +Uses the unofficial HTTP API and WebSockets for continuous channel updates. Add one (or more) Homematic IP Access Points to config.json. There are two configuration options that you can set: @@ -21,10 +21,10 @@ options that you can set: } ``` -The Access Point ID is printed on the back of your Homematic IP Access Point (HmIP-HAP) and is -labeled as "SGTIN", e.g. 3014-xxxx-xxxx-xxxx-xxxx-xxxx. +The Access Point ID is printed on the back of your Homematic IP Access Point (HmIP-HAP) and is +labeled as "SGTIN", e.g. 3014-xxxx-xxxx-xxxx-xxxx-xxxx. -### Pairing +### Pairing ``` { @@ -35,7 +35,7 @@ labeled as "SGTIN", e.g. 3014-xxxx-xxxx-xxxx-xxxx-xxxx. } ``` -If you do not have an auth_token or don't know it, leave it empty. Be sure to add the "pin" property if it is set in the app. +If you do not have an auth_token or don't know it, leave it empty. Be sure to add the "pin" property if it is set in the app. After startup, watch the logs and wait for "Press blue, glowing link button of HmIP Access Point now!". Then press the button and note the "auth_token" that is being generated, add it to your config.json, remove the pin and restart. @@ -51,6 +51,7 @@ See [Wiki](https://github.com/marcsowen/homebridge-homematicip/wiki) for details - HmIP-eTRV-2 Radiator thermostat - HmIP-eTRV-B Radiator thermostat - basic - HmIP-eTRV-C Heating thermostat - compact without display +- HmIP-eTRV-CL Heating thermostat - compact plus with display - HmIP-eTRV-E Radiator thermostat - Evo - HmIP-FROLL Shutter actuator - flush-mount - HmIP-BROLL Shutter actuator - brand-mount @@ -109,7 +110,7 @@ See [Wiki](https://github.com/marcsowen/homebridge-homematicip/wiki) for details - Implement more devices - Implement META-Group (Homematic IP rooms) to HomeKit room-Mapping -- Implement custom characteristics (Actuator) for Radiator Thermostats (e.g. to be used in Eve App) +- Implement custom characteristics (Actuator) for Radiator Thermostats (e.g. to be used in Eve App) ## Many thanks to our contributors