Skip to content

Instantly share code, notes, and snippets.

@DzikuVx
Created December 10, 2015 20:29
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 DzikuVx/fc464746d2a03a99b6b9 to your computer and use it in GitHub Desktop.
Save DzikuVx/fc464746d2a03a99b6b9 to your computer and use it in GitHub Desktop.
import RPi.GPIO as GPIO
import time
def main():
# GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
GPIO.setup(18, GPIO.OUT)
GPIO.output(18, GPIO.HIGH)
time.sleep(5);
GPIO.output(18, GPIO.LOW)
GPIO.cleanup()
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment