Project v1

This commit is contained in:
Ádám Kovács
2023-11-02 16:02:16 +01:00
parent 70e8d2d79a
commit db76621806
171 changed files with 23617 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