diff --git a/fhem/FHEM/00_TUL.pm b/fhem/FHEM/00_TUL.pm index 26bea8c9e..0cff8dd6c 100644 --- a/fhem/FHEM/00_TUL.pm +++ b/fhem/FHEM/00_TUL.pm @@ -9,6 +9,7 @@ # ABU 20160310 repaired dispatch events - inform EIB, only is useEIB is set # ABU 20160515 removed compatibility flag for EIB # ABU 20160516 added log entry for non-compatibility of tul +# ABU 20160613 changed log entry for startup package main; @@ -104,7 +105,10 @@ TUL_Define($$) #Set attributes in order to control backward-compatibility #$attr{$name}{useEIB} = 1; #Log3 ($name, 1, "Using EIB is deprecated. Please migrate to KNX soon. Module 10_EIB is not maintained any longer.") if (AttrVal($name, "useEIB", 0) =~ m/1/); - Log3 ($name, 0, "Using EIB is deprecated. Please migrate to KNX soon. Module 10_EIB is not maintained any longer. If you still want to use the module EIB, please set the attribute useEIB to 1.") if (AttrVal($name, "useEIB", 0) =~ m/1/); + #Log3 ($name, 0, "Using EIB is deprecated. Please migrate to KNX soon. Module 10_EIB is not maintained any longer. If you still want to use the module EIB, please set the attribute useEIB to 1.") if (AttrVal($name, "useEIB", 0) =~ m/1/); + Log3 ($name, 0, "Using EIB is deprecated. Please migrate to KNX soon. Module 10_EIB is not maintained any longer. If you still want to use the module EIB, + please set the attribute useEIB to 1 within the tul-device. Please keep in mind, that 10_KNX has a changed syntax regarding the definition, arguments and readings. Please refer to the commandref. + As well 10_EIB and 10_KNX are compatible to daemon eibd and knxd.") if (AttrVal($name, "useEIB", 0) =~ m/0/); $hash->{DeviceName} = $dev; $hash->{DeviceAddress} = $devaddr;