Advertisement
Guest User

attempted blink sketch redux

a guest
Mar 13th, 2024
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. import time
  2. import RPi.GPIO
  3. LEDPin = 4
  4. RPi.GPIO.setmode(RPi.GPIO.BCM)
  5. RPi.GPIO.setup(pin, RPi.GPIO.OUT, initial=RPi.GPIO.LOW)
  6.  
  7. while(True):
  8. RPi.GPIO.output(LEDPin, RPi.GPIO.HIGH)
  9. time.sleep(0.5)
  10. RPi.GPIO.output(LEDPin, RPi.GPIO.LOW)
  11. time.sleep(0.5)
  12.  
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement