Hi, I tried this code and what I do not understand is that it flashes only 4 times, yet the cycle is 10. What can it be? Thank you chipxx :cry: import RPi.GPIO as GPIO import time GPIO.setmode(GPIO.BOARD) GPIO.setup(7,GPIO.OUT) for i in range(0,10): GPIO.output(7,True) time.sleep(1) GPIO.output(7,Fa...