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";