15 lines
354 B
PHP
15 lines
354 B
PHP
|
<?php
|
||
|
// -------------------------------------------
|
||
|
// outdoor lights control -- server
|
||
|
// copyright: Jannik Beyerstedt | https://jannikbeyerstedt.de
|
||
|
// license: http://www.gnu.org/licenses/gpl-3.0.txt GPLv3 License
|
||
|
// -------------------------------------------
|
||
|
|
||
|
include "functions.php";
|
||
|
|
||
|
$light = new LightStatus();
|
||
|
$light->update();
|
||
|
|
||
|
echo $light;
|
||
|
?>
|