Hi Well to hazard a guess... You posted some code import RPi.GPIO as GPIO import time GPIO.cleanup() GPIO.setmode(GPIO.BOARD) GPIO.setup(3, GPIO.OUT) while True: GPIO.output(3, GPIO.HIGH) time.sleep(5) GPIO.output(3, GPIO.LOW) time.sleep(5) in which, as somebody that don't do python cept once, sees ...