[CODE] first hack

This commit is contained in:
Jannik Beyerstedt 2017-07-24 01:34:53 +02:00
parent 81bb48099c
commit 0e18048954
5 changed files with 308 additions and 1 deletions

14
service.php Normal file
View file

@ -0,0 +1,14 @@
<?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;
?>