mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 12:49:34 +00:00
73_AutoShuttersControl: fix AntiFreeze_Fn
git-svn-id: https://svn.fhem.de/fhem/trunk@21102 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
0e683e4897
commit
62f69cde45
@ -1,5 +1,6 @@
|
|||||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
||||||
# Do not insert empty lines here, update check depends on it.
|
# Do not insert empty lines here, update check depends on it.
|
||||||
|
- bugfix: 73_AutoShuttersControl: fix AntiFreeze_Fn
|
||||||
- feature 14_SD_UT: new model remote control Novy_840039
|
- feature 14_SD_UT: new model remote control Novy_840039
|
||||||
- bugfix: 88_Timer: fix2 list "Probably associated with" Forum: #1015549
|
- bugfix: 88_Timer: fix2 list "Probably associated with" Forum: #1015549
|
||||||
- new: 70_DENON_AVR: initial commit.
|
- new: 70_DENON_AVR: initial commit.
|
||||||
|
@ -3193,10 +3193,11 @@ sub CreateNewNotifyDev($) {
|
|||||||
|
|
||||||
sub ShuttersInformation($@) {
|
sub ShuttersInformation($@) {
|
||||||
|
|
||||||
my ($FW_wname, $d, $room, $pageHash) = @_;
|
my ( $FW_wname, $d, $room, $pageHash ) = @_;
|
||||||
my $hash = $defs{$d};
|
my $hash = $defs{$d};
|
||||||
|
|
||||||
my $ret = '<html><table><tr><h3>ASC Configuration and Information Summary</h3><td>';
|
my $ret =
|
||||||
|
'<html><table><tr><h3>ASC Configuration and Information Summary</h3><td>';
|
||||||
$ret .= '<table class="block wide">';
|
$ret .= '<table class="block wide">';
|
||||||
$ret .= '<tr class="even">';
|
$ret .= '<tr class="even">';
|
||||||
$ret .= "<td><b>Shutters</b></td>";
|
$ret .= "<td><b>Shutters</b></td>";
|
||||||
@ -4698,6 +4699,11 @@ sub getFreezeStatus {
|
|||||||
use POSIX qw(strftime);
|
use POSIX qw(strftime);
|
||||||
my $self = shift;
|
my $self = shift;
|
||||||
my $daytime = strftime( "%P", localtime() );
|
my $daytime = strftime( "%P", localtime() );
|
||||||
|
$daytime = (
|
||||||
|
defined($daytime) and $daytime
|
||||||
|
? $daytime
|
||||||
|
: ( strftime( "%k", localtime() ) < 12 ? 'pm' : 'am' )
|
||||||
|
);
|
||||||
my $outTemp = $ascDev->getOutTemp;
|
my $outTemp = $ascDev->getOutTemp;
|
||||||
$outTemp = $shutters->getOutTemp if ( $shutters->getOutTemp != -100 );
|
$outTemp = $shutters->getOutTemp if ( $shutters->getOutTemp != -100 );
|
||||||
|
|
||||||
@ -7891,7 +7897,7 @@ sub getblockAscDrivesAfterManual {
|
|||||||
],
|
],
|
||||||
"release_status": "testing",
|
"release_status": "testing",
|
||||||
"license": "GPL_2",
|
"license": "GPL_2",
|
||||||
"version": "v0.8.14",
|
"version": "v0.8.15",
|
||||||
"author": [
|
"author": [
|
||||||
"Marko Oldenburg <leongaultier@gmail.com>"
|
"Marko Oldenburg <leongaultier@gmail.com>"
|
||||||
],
|
],
|
||||||
|
Loading…
Reference in New Issue
Block a user