from machine import Pin
import time
LED_PIN=14
LED_PIN2=13
LED_PIN3=12
chopp=Pin(LED_PIN,Pin.OUT)
manja=Pin(LED_PIN2,Pin.OUT)
pachcha=Pin(LED_PIN3,Pin.OUT)
while True:
manja.on()
time.sleep(5)
manja.off()
time.sleep(1)
chopp.on()
time.sleep(3)
chopp.off()
time.sleep(1)
pachcha.on()
time.sleep(5)
pachcha.off()