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

5 lines
86 B
PHP

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