5 lines
86 B
PHP
5 lines
86 B
PHP
<?php
|
|
$fp = fopen('/home/pi/hugh/rgb', 'w');
|
|
fwrite($fp, '0, 0, 255');
|
|
fclose($fp);
|
|
?>
|