Skip to content

Instantly share code, notes, and snippets.

@mrbuk
Last active April 23, 2020 15:46
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 mrbuk/cd45d56cabda104a0613340111f79edd to your computer and use it in GitHub Desktop.
Save mrbuk/cd45d56cabda104a0613340111f79edd to your computer and use it in GitHub Desktop.
Turn GPIO17 on RasPI on
import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
GPIO.setup(17, GPIO.OUT)
GPIO.output(17, True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment