From 818f29dcec4a50a21a7d7b818f4d0790640f98e3 Mon Sep 17 00:00:00 2001 From: delmar <> Date: Fri, 20 Mar 2020 07:07:25 +0000 Subject: [PATCH] 72_TA_CMI_JSON: DL-Bus data now also available to RSM (thx mkwi) git-svn-id: https://svn.fhem.de/fhem/trunk@21460 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/CHANGED | 1 + fhem/FHEM/72_TA_CMI_JSON.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/fhem/CHANGED b/fhem/CHANGED index dced5290d..1e7e18244 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,5 +1,6 @@ # Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Do not insert empty lines here, update check depends on it. + - feature: 72_TA_CMI_JSON: DL-Bus data now also available to RSM (thx mkwi) - new: 89_ESPEInk: New Module for EInk Modules connected to ESP boards - feature: 73_AutoShuttersControl: add additional condition for holidyweekend drive Time diff --git a/fhem/FHEM/72_TA_CMI_JSON.pm b/fhem/FHEM/72_TA_CMI_JSON.pm index 9b747e212..41ba8b08b 100755 --- a/fhem/FHEM/72_TA_CMI_JSON.pm +++ b/fhem/FHEM/72_TA_CMI_JSON.pm @@ -189,7 +189,7 @@ sub TA_CMI_JSON_ParseHttpResponse { TA_CMI_JSON_extractReadings($hash, $keyValues, 'Outputs', 'Outputs') if ($queryParams =~ /O/); if ($queryParams =~ /D/) { - if ($canDevice eq 'UVR16x2') { + if ($canDevice eq 'UVR16x2' or $canDevice eq 'RSM610' ) { TA_CMI_JSON_extractReadings($hash, $keyValues, 'DL-Bus', 'DL-Bus'); } else { Log3 $name, 0, "TA_CMI_JSON ($name) - Reading DL-Bus input is not supported on $canDevice";