Guest User

Untitled

a guest
Dec 16th, 2017
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. import RPi.GPIO as gpio
  2.  
  3. def up():
  4. gpio.setmode(gpio.BCM)
  5. gpio.output(7,False)
  6. gpio.output(11,True)
  7. gpio.output(13,False)
  8. gpio.output(15,True)
  9.  
  10. up()
  11. gpio.cleanup()
Add Comment
Please, Sign In to add comment