[FIX] correct remaining time calculation at night before midnight, set body max-width
This commit is contained in:
parent
85f3ee44ca
commit
b0a675ab3d
|
@ -70,10 +70,10 @@ class LightStatus {
|
|||
$startTime = strtotime($this->times[$timeKey]['on']);
|
||||
$stopTime = strtotime($this->times[$timeKey]['off']);
|
||||
if ($stopTime < $startTime) {
|
||||
$stopTime += (24 * 60 * 60);
|
||||
if (($stopTime - $currentTime) > (24 * 60 * 60)) {
|
||||
$startTime -= (24 * 60 * 60);
|
||||
$stopTime -= (24 * 60 * 60);
|
||||
$stopTime += (24*60*60);
|
||||
if (($stopTime - $currentTime) > (24*60*60)) {
|
||||
$startTime -= (24*60*60);
|
||||
$stopTime -= (24*60*60);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -82,6 +82,16 @@ class LightStatus {
|
|||
$this->changeTime = (int)(($stopTime - $currentTime) / 60);
|
||||
$this->waitTime = 1;
|
||||
return true;
|
||||
} elseif ($currentTime < $startTime || ($startTime+(24*60*60) - $currentTime) < (12*60*60) ) {
|
||||
// right before the next time interval
|
||||
$this->state = false;
|
||||
if ($currentTime < $startTime) {
|
||||
$this->changeTime = (int)( ($startTime - $currentTime) / 60 );
|
||||
} else {
|
||||
$this->changeTime = (int)( (($startTime+(24*60*60)) - $currentTime) / 60 );
|
||||
}
|
||||
$this->waitTime = 1;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -69,8 +69,8 @@ if (isset($_GET['action'])) {
|
|||
<link rel="stylesheet" href="style.css">
|
||||
|
||||
</head>
|
||||
<body class="container-fluid">
|
||||
<h1>Außenbeleuchtung</h1>
|
||||
<body class="container">
|
||||
<h1>Garagenlicht</h1>
|
||||
|
||||
<?php if ($error_string != '') : ?>
|
||||
<div class="alert alert-danger" role="alert"><?php echo $error_string ?></div>
|
||||
|
|
Reference in a new issue