Advertisement
digitalfx

control.php

Mar 8th, 2011
2,049
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?php
  2. sleep(1);
  3. $c1 = $_GET['command'];
  4. $fp = fopen("/dev/ttyACM0", "w");
  5. fwrite($fp, chr($c1));
  6. fclose($fp);
  7. ?>
  8. <!--Redirect user back to control main page -->
  9. <meta http-equiv="refresh" content="0;url=index.php">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement