From 8b109617e9f77ac6dbb3a1076bc7c4f630461bd0 Mon Sep 17 00:00:00 2001 From: mgehre <> Date: Fri, 11 Sep 2015 21:43:59 +0000 Subject: [PATCH] CUL_MAX: work together with a-culfw git-svn-id: https://svn.fhem.de/fhem/trunk@9233 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/CHANGED | 1 + fhem/FHEM/14_CUL_MAX.pm | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/fhem/CHANGED b/fhem/CHANGED index c3887de32..b7ba5bd63 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: 14_CUL_MAX: work together with a-culfw - bugfix: 70_PushNotifier: bugfix regex deviceID - feature: new Module 74_AMAD to request Information and control Android Devices in cooperation with AutomagicApp on the Device (Forum diff --git a/fhem/FHEM/14_CUL_MAX.pm b/fhem/FHEM/14_CUL_MAX.pm index 515ec9f77..99d9c947e 100644 --- a/fhem/FHEM/14_CUL_MAX.pm +++ b/fhem/FHEM/14_CUL_MAX.pm @@ -141,6 +141,11 @@ CUL_MAX_Check($@) my $version = $hash->{IODev}{VERSION}; + if($version =~ m/.*a-culfw.*/) { + #a-culfw is compatibel to culfw 154 + return 154; + } + #Looks like "V 1.49 CUL868" if($version =~ m/V (.*)\.(.*) .*/) { my ($major_version,$minorversion) = ($1, $2);