2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-13 05:06:35 +00:00

IODev added

git-svn-id: https://svn.fhem.de/fhem/trunk@309 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2008-12-31 08:39:11 +00:00
parent e7dd568030
commit e900a230f4
5 changed files with 5 additions and 1 deletions

View File

@ -470,3 +470,4 @@
- bugfix: fht actuator message clarification by Klaus
- feature: getstate command from Martin (25.12)
- bugfix: at drifts for relative timespecs
- bugfix: Add IODev to CUL/EM/CUL_WS/HMS/KS300

View File

@ -57,7 +57,7 @@ HMS_Define($$)
$hash->{CODE} = $a[2];
$defptr{$a[2]} = $hash;
AssignIoPort($hash);
return undef;
}

View File

@ -43,6 +43,7 @@ KS300_Define($$)
$hash->{RAINUNIT} = $rainunit;
$hash->{WINDUNIT} = $windunit;
$defptr{$a[2]} = $hash;
AssignIoPort($hash);
return undef;
}

View File

@ -50,6 +50,7 @@ CUL_WS_Define($$)
$hash->{corr3} = ((int(@a) > 5) ? $a[5] : 0);
$hash->{corr4} = ((int(@a) > 6) ? $a[6] : 0);
$defptr{$a[2]} = $hash;
AssignIoPort($hash);
return undef;
}

View File

@ -56,6 +56,7 @@ CUL_EM_Define($$)
$hash->{corr2} = 1;
}
$defptr{$a[2]} = $hash;
AssignIoPort($hash);
return undef;
}