2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-21 01:46:08 +00:00

00_OWX.pm: Finale Version vor dem Wechsel auf asynchrones I/O

git-svn-id: https://svn.fhem.de/fhem/trunk@15159 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
phenning 2017-10-01 10:02:28 +00:00
parent 5e6e044d71
commit a9f5ff7f07

View File

@ -10,7 +10,7 @@
# #
# Prof. Dr. Peter A. Henning # Prof. Dr. Peter A. Henning
# #
# Contributions from: Martin Fischer, Rudolf König, Boris Neubert, Joachim Herold # Final version 6.314 before switching to asynchronous IO
# #
# $Id$ # $Id$
# #
@ -820,6 +820,10 @@ sub OWX_Discover ($) {
}elsif( $owx_f eq "29" ){ }elsif( $owx_f eq "29" ){
$chip = "DS2408"; $chip = "DS2408";
$acstring = "OWSWITCH DS2408"; $acstring = "OWSWITCH DS2408";
#-- Family 2C = Potentiometer DS2890
}elsif( $owx_f eq "2C" ){
$chip = "DS2890";
$acstring = "OWVAR DS2890";
#-- Family 3A = Switch DS2413 #-- Family 3A = Switch DS2413
}elsif( $owx_f eq "3A" ){ }elsif( $owx_f eq "3A" ){
$chip = "DS2413"; $chip = "DS2413";
@ -1077,7 +1081,7 @@ sub OWX_Undef ($$) {
# #
######################################################################################## ########################################################################################
sub OWX_Verify () { sub OWX_Verify {
my ($hashorname,$devname,$devid,$type) = @_; my ($hashorname,$devname,$devid,$type) = @_;
my $hash; my $hash;