<?php
$light = $_GET["light"];
$output = null;
exec('bash ../scripts/set_light.sh '.$light, $output);
echo $output[0];
?>