From 239c54306bd010061a6650d8588b4ee1ea21ef51 Mon Sep 17 00:00:00 2001 From: hotmaz <> Date: Thu, 30 Jun 2011 17:42:12 +0000 Subject: [PATCH] bugfixes thanks to patch from tosti git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@926 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- contrib/90_EIBUPDOWN.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/contrib/90_EIBUPDOWN.pm b/contrib/90_EIBUPDOWN.pm index 2eda69912..68fcc0ad0 100644 --- a/contrib/90_EIBUPDOWN.pm +++ b/contrib/90_EIBUPDOWN.pm @@ -11,6 +11,7 @@ my %eib_c2b1 = ( "up" => "01", "down" => "00", "up-for-timer" => "01", + "down-for-timer" => "00", ); my %eib_c2b2 = ( @@ -161,8 +162,8 @@ EIBUPDOWN_Set($@) my $dur = $a[2]; my $to = sprintf("%02d:%02d:%02d", $dur/3600, ($dur%3600)/60, $dur%60); $modules{EIB}{ldata}{$a[0]} = $to; - Log 4, "Follow: +$to set $a[0] off"; - CommandDefine(undef, $a[0] . "_timer at +$to set $a[0] off"); + Log 4, "Follow: +$to set $a[0] alloff"; + CommandDefine(undef, $a[0] . "_timer at +$to set $a[0] alloff"); } ##########################