mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-06 12:18:46 +00:00
98_Heating_Control, 98_WeekdayTmer:
fixing some minor bugs: http://forum.fhem.de/index.php/topic,10011.msg278781.html#msg278781 git-svn-id: https://svn.fhem.de/fhem/trunk@8394 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
616edcf8c9
commit
4294b64707
@ -20,7 +20,6 @@
|
|||||||
# along with fhem. If not, see <http://www.gnu.org/licenses/>.
|
# along with fhem. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
package main;
|
package main;
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
@ -102,6 +101,11 @@ sub Heating_Control_Attr($$$) {
|
|||||||
return undef;
|
return undef;
|
||||||
}
|
}
|
||||||
########################################################################
|
########################################################################
|
||||||
|
sub Heating_Control_SetTimer($) {
|
||||||
|
my ($hash) = @_;
|
||||||
|
return WeekdayTimer_SetTimer($hash);
|
||||||
|
}
|
||||||
|
########################################################################
|
||||||
sub Heating_Control_SetAllTemps() { # {Heating_Control_SetAllTemps()}
|
sub Heating_Control_SetAllTemps() { # {Heating_Control_SetAllTemps()}
|
||||||
|
|
||||||
foreach my $hc ( sort keys %{$modules{Heating_Control}{defptr}} ) {
|
foreach my $hc ( sort keys %{$modules{Heating_Control}{defptr}} ) {
|
||||||
|
@ -21,7 +21,6 @@
|
|||||||
# along with fhem. If not, see <http://www.gnu.org/licenses/>.
|
# along with fhem. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
package main;
|
package main;
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
@ -31,7 +30,6 @@ use Time::Local 'timelocal_nocheck';
|
|||||||
|
|
||||||
use Data::Dumper;
|
use Data::Dumper;
|
||||||
$Data::Dumper::Sortkeys = 1;
|
$Data::Dumper::Sortkeys = 1;
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
sub WeekdayTimer_Initialize($){
|
sub WeekdayTimer_Initialize($){
|
||||||
my ($hash) = @_;
|
my ($hash) = @_;
|
||||||
@ -191,10 +189,10 @@ sub WeekdayTimer_Profile($) {
|
|||||||
foreach my $d (@{$tage}) {
|
foreach my $d (@{$tage}) {
|
||||||
|
|
||||||
my $dayOfEchteZeit = $d;
|
my $dayOfEchteZeit = $d;
|
||||||
if ($d==7) { # Weekend
|
if ($d==7) { # Weekend
|
||||||
$dayOfEchteZeit = ($wday ~~ [1..5]) ? 6 : $wday; # ggf. Samstag
|
$dayOfEchteZeit = ($wday>=1&&$wday<=5) ? 6 : $wday; # ggf. Samstag $wday ~~ [1..5]
|
||||||
} elsif ($d==8) { # day of Week
|
} elsif ($d==8) { # day of Week
|
||||||
$dayOfEchteZeit = ($wday ~~ [0..6]) ? 1 : $wday; # ggf. Montag
|
$dayOfEchteZeit = ($wday==0||$wday==6) ? 1 : $wday; # ggf. Montag $wday ~~ [0, 6]
|
||||||
}
|
}
|
||||||
|
|
||||||
my $echtZeit = WeekdayTimer_EchteZeit($hash, $dayOfEchteZeit, $time);
|
my $echtZeit = WeekdayTimer_EchteZeit($hash, $dayOfEchteZeit, $time);
|
||||||
@ -508,10 +506,18 @@ sub WeekdayTimer_Update($) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
my $active = 1;
|
my $active = 1;
|
||||||
my $condition = WeekdayTimer_Condition ($hash, $tage);
|
my $condition = WeekdayTimer_Condition ($hash, $tage);
|
||||||
|
my $tageAsHash = WeekdayTimer_tageAsHash($hash, $tage);
|
||||||
|
my $xPression = "{".$tageAsHash.";;".$condition ."}";
|
||||||
|
my %specials= (
|
||||||
|
"%NAME" => $hash->{DEVICE},
|
||||||
|
"%EVENT" => $newParam,
|
||||||
|
);
|
||||||
|
$xPression= EvalSpecials($xPression, %specials);
|
||||||
|
$xPression =~ s/%%days/%days/g;
|
||||||
if ($condition) {
|
if ($condition) {
|
||||||
$active = AnalyzeCommandChain(undef, "{". $condition ."}");
|
$active = AnalyzeCommandChain(undef, $xPression);
|
||||||
}
|
}
|
||||||
Log3 $hash, 4, "[$name] seems to be active: $condition" if($active);
|
Log3 $hash, 4, "[$name] seems to be active: $condition" if($active);
|
||||||
|
|
||||||
@ -663,7 +669,7 @@ sub WeekdayTimer_FensterOffen ($$$) {
|
|||||||
sub WeekdayTimer_Device_Schalten($$$) {
|
sub WeekdayTimer_Device_Schalten($$$) {
|
||||||
my ($hash, $newParam, $tage) = @_;
|
my ($hash, $newParam, $tage) = @_;
|
||||||
|
|
||||||
my ($command, $condition) = "";
|
my ($command, $condition, $tageAsHash) = "";
|
||||||
my $name = $hash->{NAME}; ###
|
my $name = $hash->{NAME}; ###
|
||||||
|
|
||||||
my $now = time();
|
my $now = time();
|
||||||
@ -673,9 +679,10 @@ sub WeekdayTimer_Device_Schalten($$$) {
|
|||||||
$command = '{ fhem("set @ '. $setModifier .' %") }';
|
$command = '{ fhem("set @ '. $setModifier .' %") }';
|
||||||
$command = $hash->{COMMAND} if (defined $hash->{COMMAND});
|
$command = $hash->{COMMAND} if (defined $hash->{COMMAND});
|
||||||
|
|
||||||
$condition = WeekdayTimer_Condition($hash, $tage);
|
$condition = WeekdayTimer_Condition ($hash, $tage);
|
||||||
|
$tageAsHash = WeekdayTimer_tageAsHash($hash, $tage);
|
||||||
$command = "{ if " .$condition . " " . $command . "}";
|
|
||||||
|
$command = "{" . $tageAsHash . "; if " .$condition . " " . $command . "}";
|
||||||
|
|
||||||
my $isHeating = $setModifier gt "";
|
my $isHeating = $setModifier gt "";
|
||||||
my $aktParam = ReadingsVal($hash->{DEVICE}, $setModifier, "");
|
my $aktParam = ReadingsVal($hash->{DEVICE}, $setModifier, "");
|
||||||
@ -690,19 +697,29 @@ sub WeekdayTimer_Device_Schalten($$$) {
|
|||||||
if ($command && !$disabled && $aktParam ne $newParam) {
|
if ($command && !$disabled && $aktParam ne $newParam) {
|
||||||
$newParam =~ s/:/ /g;
|
$newParam =~ s/:/ /g;
|
||||||
|
|
||||||
$command = SemicolonEscape($command);
|
|
||||||
my %specials= (
|
my %specials= (
|
||||||
"%NAME" => $hash->{DEVICE},
|
"%NAME" => $hash->{DEVICE},
|
||||||
"%EVENT" => $newParam,
|
"%EVENT" => $newParam,
|
||||||
);
|
);
|
||||||
$command= EvalSpecials($command, %specials);
|
$command= EvalSpecials($command, %specials);
|
||||||
|
$command =~ s/%%days/%days/g;
|
||||||
|
|
||||||
Log3 $hash, 4, "[$name] command: $command executed";
|
Log3 $hash, 4, "[$name] command: $command executed";
|
||||||
my $ret = AnalyzeCommandChain(undef, $command);
|
my $ret = AnalyzeCommandChain(undef, $command);
|
||||||
Log3 ($hash, 3, $ret) if($ret);
|
Log3 ($hash, 3, $ret) if($ret);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
################################################################################
|
################################################################################
|
||||||
|
sub WeekdayTimer_tageAsHash($$) {
|
||||||
|
my ($hash, $tage) = @_;
|
||||||
|
|
||||||
|
my %days = map {$_ => 1} @$tage;
|
||||||
|
map {delete $days{$_}} (7,8);
|
||||||
|
|
||||||
|
# %% weil %,@ in device para verwandelt wird
|
||||||
|
return 'my%%days=map{$_=>1}'.'('.join (",", sort keys %days).')';
|
||||||
|
}
|
||||||
|
################################################################################
|
||||||
sub WeekdayTimer_Condition($$) {
|
sub WeekdayTimer_Condition($$) {
|
||||||
my ($hash, $tage) = @_;
|
my ($hash, $tage) = @_;
|
||||||
|
|
||||||
@ -723,7 +740,7 @@ sub WeekdayTimer_TageAsCondition ($) {
|
|||||||
my $we = $days{7}; delete $days{7}; # $we
|
my $we = $days{7}; delete $days{7}; # $we
|
||||||
my $notWe = $days{8}; delete $days{8}; #!$we
|
my $notWe = $days{8}; delete $days{8}; #!$we
|
||||||
|
|
||||||
my $tageExp = '($wday ~~ [' . join (",", sort keys %days) . "]";
|
my $tageExp = '(defined $days{$wday}';
|
||||||
$tageExp .= ' || $we' if defined $we;
|
$tageExp .= ' || $we' if defined $we;
|
||||||
$tageExp .= ' || !$we' if defined $notWe;
|
$tageExp .= ' || !$we' if defined $notWe;
|
||||||
$tageExp .= ')';
|
$tageExp .= ')';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user