Added ESP32 side of the transceiver

This commit is contained in:
Denakosg945
2026-06-04 17:01:14 +03:00
parent bcf7bede0f
commit fa830b2c37
2303 changed files with 497306 additions and 0 deletions
@@ -0,0 +1,9 @@
from collections.abc import Mapping
from typing import Any, Final
from .__version__ import version
f2py_version: Final = version
def findcommonblocks(block: Mapping[str, object], top: int = 1) -> list[tuple[str, list[str], dict[str, Any]]]: ...
def buildhooks(m: Mapping[str, object]) -> tuple[dict[str, Any], str]: ...