import Adafruit_BBIO.GPIO as GPIOfrom time import sleep
outPin="P9_12"GPIO.setup(outPin,GPIO.OUT)while True: GPIO.output(outPin, GPIO.HIGH) print('LED ON')
<?php
$result = 'nothing';
if (isset($_POST['set_off'])){ $result = 'turned off'; shell_exec("sudo python /var/www/html/ledoff.py");}
if (isset($_POST['set_on'])){ $result = 'turned on'; shell_exec("sudo python /var/www/html/ledon.py");}
?>
<?php if (isset($result)) { ?> <h1> Action: <?php echo $result ?></h1> <?php } ?>
<form action="" method="post"> <p><input type="hidden" name="set_on" value="yes"/><input type="submit" value="LED On"/></p></form>
<form action="" method="post"> <p><input type="hidden" name="set_off" value="yes"/><input type="submit" value="LED Off"/></p></form></body>
</html>
--
For more options, visit http://beagleboard.org/discuss
---
You received this message because you are subscribed to a topic in the Google Groups "BeagleBoard" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/beagleboard/8Ot4rBJpKVk/unsubscribe.
To unsubscribe from this group and all its topics, send an email to beagleboard...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/beagleboard/85967299-06c2-4fb3-bc16-26584a2874f1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.