import machine
import time
i = -1
led = machine.Pin(25, machine.Pin.OUT)
led.high()
led.low()
while True:
i=i+1
print(i)
led.high()
time.sleep(0.5)
led.low()
time.sleep(0.5)
import machine
import time
i = -1
led = machine.Pin(25, machine.Pin.OUT)
led.high()
led.low()
while True:
i=i+1
print(i)
led.high()
time.sleep(0.5)
led.low()
time.sleep(0.5)