import time
LED_PIN =
GPIO.setmode(GPIO.BCM)
GPIO.setup(LED_PIN, GPIO.OUT)
LED_COLOR =
try:
GPIO.output(LED_PIN, GPIO.HIGH)
time.sleep( )
GPIO.output(LED_PIN, GPIO.LOW)
time.sleep( )
except KeyboardInterrupt:
GPIO.cleanup()