micropython: add micropython component
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
try:
|
||||
import uasyncio as asyncio
|
||||
except ImportError:
|
||||
try:
|
||||
import asyncio
|
||||
except ImportError:
|
||||
print("SKIP")
|
||||
raise SystemExit
|
||||
|
||||
|
||||
async def forever():
|
||||
print("forever start")
|
||||
await asyncio.sleep(10)
|
||||
|
||||
|
||||
async def main():
|
||||
print("main start")
|
||||
asyncio.create_task(forever())
|
||||
await asyncio.sleep(0.001)
|
||||
print("main done")
|
||||
return 42
|
||||
|
||||
|
||||
print(asyncio.run(main()))
|
Reference in New Issue
Block a user