2016-11-29 10:42:10 +00:00

5 lines
86 B
PHP

<?php
$fp = fopen('/home/pi/hugh/rgb', 'w');
fwrite($fp, '0, 0, 255');
fclose($fp);
?>