2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-16 23:06:05 +00:00

CUL_MAX: work together with a-culfw

git-svn-id: https://svn.fhem.de/fhem/trunk@9233 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
mgehre 2015-09-11 21:43:59 +00:00
parent f788672be5
commit 8b109617e9
2 changed files with 6 additions and 0 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.
- 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

View File

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