MicroPython stuff

This commit is contained in:
Ádám Kovács
2023-11-07 14:00:27 +01:00
parent 56146a6307
commit 36638e2dd1
170 changed files with 23479 additions and 0 deletions

23
.vscode/Pico-W-Stub/aioble/core.pyi vendored Normal file
View File

@@ -0,0 +1,23 @@
from _typeshed import Incomplete
log_level: int
def log_error(*args) -> None: ...
def log_warn(*args) -> None: ...
def log_info(*args) -> None: ...
class GattError(Exception):
_status: Incomplete
def __init__(self, status) -> None: ...
def ensure_active() -> None: ...
def config(*args, **kwargs): ...
_irq_handlers: Incomplete
_shutdown_handlers: Incomplete
def register_irq_handler(irq, shutdown) -> None: ...
def stop() -> None: ...
def ble_irq(event, data): ...
ble: Incomplete