I have two co-routines. I start led blinking and wifi connection, but after wifi connection is complete i want to stop led blinking function.
Led blinking function:
async def blink:
while True:
led.on()
await uasyncio.sleep(seconds)
led.off()
await uasyncio.sleep(seconds)