I write there because my GPIO 4 ramdomly works.
Code: Select all
#!/usr/bin/python
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
# init list with pin numbers
pinList = [2, 3, 4, 17, 27, 22, 10, 9]
# loop through pins and set mode and state to 'low'
for i in pinList:
GPIO.setup(i, GPIO.OUT)
GPIO.output(i, GPIO.HIGH)
# time to sleep between operations in the main loop
SleepTimeL = 2
# main loop
try:
GPIO.output(2, GPIO.LOW)
print "ONE"
time.sleep(SleepTimeL);
GPIO.output(3, GPIO.LOW)
print "TWO"
time.sleep(SleepTimeL);
GPIO.output(4, GPIO.LOW)
print "THREE"
time.sleep(SleepTimeL);
GPIO.output(17, GPIO.LOW)
print "FOUR"
time.sleep(SleepTimeL);
GPIO.output(27, GPIO.LOW)
print "FIVE"
time.sleep(SleepTimeL);
GPIO.output(22, GPIO.LOW)
print "SIX"
time.sleep(SleepTimeL);
GPIO.output(10, GPIO.LOW)
print "SEVEN"
time.sleep(SleepTimeL);
GPIO.output(9, GPIO.LOW)
print "EIGHT"
time.sleep(SleepTimeL);
GPIO.cleanup()
print "Good bye!"
# End program cleanly with keyboard
except KeyboardInterrupt:
print " Quit"
# Reset GPIO settings
GPIO.cleanup()
All works well but, after some seconds, the relè attached to the GPIO 4 stop work.
in this video you can see the problem better
https://www.youtube.com/watch?v=KB463S9dAmQ
Sorry for my bad english.