From 7289108623a0eddc6008ef968607ca280557cdb9 Mon Sep 17 00:00:00 2001 From: zap <> Date: Tue, 2 May 2017 08:16:17 +0000 Subject: [PATCH] HMCCU: Bug fix git-svn-id: https://svn.fhem.de/fhem/trunk@14162 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/CHANGED | 1 + fhem/FHEM/88_HMCCU.pm | 8 +++++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/fhem/CHANGED b/fhem/CHANGED index 8b40b6ef9..12b943ee8 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. + - bugfix: 88_HMCCU: Fixed bug during FHEM start - feature: 88_HMCCU: New reading based calculation modes - feature: 34_ESPEasy.pm: Added ESPeasy Mega internals build.* - bugfix 73_km200.pm: Errorlist unsorted timestamp diff --git a/fhem/FHEM/88_HMCCU.pm b/fhem/FHEM/88_HMCCU.pm index 192dd1863..a8b9cfa4e 100755 --- a/fhem/FHEM/88_HMCCU.pm +++ b/fhem/FHEM/88_HMCCU.pm @@ -4,7 +4,7 @@ # # $Id$ # -# Version 4.0.003 +# Version 4.0.004 # # Module for communication between FHEM and Homematic CCU2. # @@ -105,7 +105,7 @@ my %HMCCU_CUST_CHN_DEFAULTS; my %HMCCU_CUST_DEV_DEFAULTS; # HMCCU version -my $HMCCU_VERSION = '4.0.003'; +my $HMCCU_VERSION = '4.0.004'; # Default RPC port (BidCos-RF) my $HMCCU_RPC_PORT_DEFAULT = 2001; @@ -2141,6 +2141,7 @@ sub HMCCU_UpdateClients ($$$$) sub HMCCU_UpdateDeviceTable ($$) { my ($hash, $devices) = @_; + my $name = $hash->{NAME}; my $devcount = 0; my $chncount = 0; @@ -4496,7 +4497,8 @@ sub HMCCU_GetDatapoint ($@) } ###################################################################### -# Set datapoint on CCU +# Set datapoint on CCU. +# Parameter param is a valid CCU datapoint specification. ###################################################################### sub HMCCU_SetDatapoint ($$$)