<html><body> <form method="post"> <p> <button name="button">On</button> </p> <p> <button name="btn">Off</button> </p> </form></body></html>
import Adafruit_BBIO.GPIO as GPIO
import time
outPin="P9_12"
GPIO.setup(outPin,GPIO.OUT)
while True:
GPIO.output(outPin, GPIO.HIGH)
Print “LED is ON”
time.sleep(10)
GPIO.output(outpin,GPIO.LOW)
Print “LED is OFF”
time.sleep(10)
--
For more options, visit http://beagleboard.org/discuss
---
You received this message because you are subscribed to the Google Groups "BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email to beagleboard...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/beagleboard/f7141dac-8671-4d50-8aef-dd25aa19cd71%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
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/npb4CY_SM04/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/6j6t7e5rpcvqd7kpud7rri5ie02b38efvv%404ax.com.