2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-07 19:04:20 +00:00

00_OWX.pm: Neue Version 7.10

git-svn-id: https://svn.fhem.de/fhem/trunk@16437 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
phenning 2018-03-18 18:46:21 +00:00
parent cec020df9e
commit 9b5863b3b8

View File

@ -98,7 +98,7 @@ use vars qw{%owg_family %gets %sets $owx_version $owx_debug};
);
#-- some globals needed for the 1-Wire module
$owx_version="7.08";
$owx_version="7.10";
#-- debugging now verbosity, this is just for backward compatibility
$owx_debug=0;
@ -190,7 +190,7 @@ sub OWX_Define ($$) {
$hwdevice = OWX_I2C->new($hash);
#-- check if we have a COC/CUNO interface attached
}elsif( (defined( $defs{$dev}->{VERSION} ) ? $defs{$dev}->{VERSION} : "") =~ m/CSM|CUNO|MapleCUN...(4|5|6|7|C|D|E|F)/ ){
}elsif( $defs{$dev} && $defs{$dev}->{VERSION} && $defs{$dev}->{VERSION} =~ m/CSM|CUNO|MapleCUN...(4|5|6|7|C|D|E|F)/ ){
require "$attr{global}{modpath}/FHEM/11_OWX_CCC.pm";
$hwdevice = OWX_CCC->new($hash);