Micropython project base

This commit is contained in:
Ádám Kovács
2023-11-10 15:09:19 +01:00
parent 25215733a6
commit 8aa7fb473b
171 changed files with 23640 additions and 0 deletions

21
.vscode/Pico-W-Stub/asyncio/event.pyi vendored Normal file
View File

@@ -0,0 +1,21 @@
import io
from . import core as core
from _typeshed import Incomplete
from collections.abc import Generator
class Event:
state: bool
waiting: Incomplete
def __init__(self) -> None: ...
def is_set(self): ...
def set(self) -> None: ...
def clear(self) -> None: ...
def wait(self) -> Generator[None, None, Incomplete]: ...
class ThreadSafeFlag(io.IOBase):
state: int
def __init__(self) -> None: ...
def ioctl(self, req, flags): ...
def set(self) -> None: ...
def clear(self) -> None: ...
async def wait(self) -> Generator[Incomplete, None, None]: ...