2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-09 20:57:11 +00:00

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
This commit is contained in:
delmar 2020-03-20 07:07:25 +00:00
parent 18bf4a0ba5
commit 818f29dcec
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

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