2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 16:56:54 +00:00

98_Heating_Control: last change is not workung under al circumstances - rollback

git-svn-id: https://svn.fhem.de/fhem/trunk@9401 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
dietmar63 2015-10-07 21:22:54 +00:00
parent a3518cb78a
commit 0adc985f25

View File

@ -590,21 +590,21 @@ sub WeekdayTimer_Update($) {
my $idx = $myHash->{MODIFIER};
my $now = time();
#Log3 $hash, 3, "WeekdayTimer_Update-->[$name] $idx ";
my $sollZeit = $myHash->{TIME};
# Schaltparameter ermitteln
my $tage = $hash->{profil}{$idx}{TAGE};
my $time = $hash->{profil}{$idx}{TIME};
my $epoch = $hash->{profil}{$idx}{EPOCH};
my $newParam = $hash->{profil}{$idx}{PARA};
#Log3 $hash, 3, "[$name] $idx ".FmtDateTime($epoch) . " " . $newParam . " " . join("",@$tage);
if ($hash->{STILLDONETIME} > $epoch ) {
if ($hash->{STILLDONETIME} <= $sollZeit ) {
$hash->{STILLDONETIME} = $sollZeit;
} else {
Log3 $hash, 3, "[$name] Timer $time overwritten by " . FmtDateTime($hash->{STILLDONETIME});
return;
}
$hash->{STILLDONETIME} = $epoch;
# Fenserkontakte abfragen - wenn einer im Status closed, dann Schaltung um 60 Sekunden verzögern
if (WeekdayTimer_FensterOffen($hash, $newParam, $idx)) {