Skip to content

Instantly share code, notes, and snippets.

@dauble
Created October 9, 2017 19:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dauble/575b065bfb6bd4a7bc65b26b42576a4f to your computer and use it in GitHub Desktop.
Save dauble/575b065bfb6bd4a7bc65b26b42576a4f to your computer and use it in GitHub Desktop.
<?php
if(isset($_GET['trigger']) && $_GET['trigger'] == 1) {
error_reporting(E_ALL);
exec('gpio write 7 0');
usleep(1000000);
exec('gpio write 7 1');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment