-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
774 changed files
with
1,541 additions
and
1,829 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 0 additions & 3 deletions
3
publish/micropython-v1_21_0-esp32-esp32_generic-stubs/_boot.pyi
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 32 additions & 8 deletions
40
publish/micropython-v1_21_0-esp32-esp32_generic-stubs/aioespnow.pyi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,34 @@ | ||
import espnow | ||
""" | ||
Module: 'aioespnow' on micropython-v1.21.0-esp32-ESP32_GENERIC | ||
""" | ||
|
||
# MCU: {'version': '1.21.0', 'mpy': 'v6.1', 'port': 'esp32', 'board': 'ESP32_GENERIC', 'family': 'micropython', 'build': '', 'arch': 'xtensawin', 'ver': '1.21.0', 'cpu': 'ESP32'} | ||
# Stubber: v1.23.0 | ||
from __future__ import annotations | ||
from typing import Generator | ||
from _typeshed import Incomplete | ||
from collections.abc import Generator | ||
|
||
class AIOESPNow(espnow.ESPNow): | ||
async def arecv(self) -> Generator[Incomplete, None, Incomplete]: ... | ||
async def airecv(self) -> Generator[Incomplete, None, Incomplete]: ... | ||
async def asend(self, mac, msg: Incomplete | None = ..., sync: Incomplete | None = ...) -> Generator[Incomplete, None, Incomplete]: ... | ||
def __aiter__(self): ... | ||
async def __anext__(self): ... | ||
class AIOESPNow: | ||
_data: list = [] | ||
_none_tuple: tuple = () | ||
def recv(self, *args, **kwargs) -> Incomplete: ... | ||
def recvinto(self, *args, **kwargs) -> Incomplete: ... | ||
def peer_count(self, *args, **kwargs) -> Incomplete: ... | ||
def mod_peer(self, *args, **kwargs) -> Incomplete: ... | ||
def irecv(self, *args, **kwargs) -> Incomplete: ... | ||
def set_pmk(self, *args, **kwargs) -> Incomplete: ... | ||
def stats(self, *args, **kwargs) -> Incomplete: ... | ||
def send(self, *args, **kwargs) -> Incomplete: ... | ||
def add_peer(self, *args, **kwargs) -> Incomplete: ... | ||
def config(self, *args, **kwargs) -> Incomplete: ... | ||
def active(self, *args, **kwargs) -> Incomplete: ... | ||
def any(self, *args, **kwargs) -> Incomplete: ... | ||
def get_peers(self, *args, **kwargs) -> Incomplete: ... | ||
def del_peer(self, *args, **kwargs) -> Incomplete: ... | ||
def get_peer(self, *args, **kwargs) -> Incomplete: ... | ||
|
||
asend: Generator ## = <generator> | ||
airecv: Generator ## = <generator> | ||
arecv: Generator ## = <generator> | ||
def irq(self, *args, **kwargs) -> Incomplete: ... | ||
def __init__(self, *argv, **kwargs) -> None: ... |
21 changes: 18 additions & 3 deletions
21
publish/micropython-v1_21_0-esp32-esp32_generic-stubs/apa106.pyi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,20 @@ | ||
""" | ||
Module: 'apa106' on micropython-v1.21.0-esp32-ESP32_GENERIC | ||
""" | ||
|
||
# MCU: {'version': '1.21.0', 'mpy': 'v6.1', 'port': 'esp32', 'board': 'ESP32_GENERIC', 'family': 'micropython', 'build': '', 'arch': 'xtensawin', 'ver': '1.21.0', 'cpu': 'ESP32'} | ||
# Stubber: v1.23.0 | ||
from __future__ import annotations | ||
from _typeshed import Incomplete | ||
from neopixel import NeoPixel | ||
|
||
class APA106(NeoPixel): | ||
ORDER: Incomplete | ||
class APA106: | ||
ORDER: tuple = () | ||
def write(self, *args, **kwargs) -> Incomplete: ... | ||
def fill(self, *args, **kwargs) -> Incomplete: ... | ||
def __init__(self, *argv, **kwargs) -> None: ... | ||
|
||
class NeoPixel: | ||
ORDER: tuple = () | ||
def write(self, *args, **kwargs) -> Incomplete: ... | ||
def fill(self, *args, **kwargs) -> Incomplete: ... | ||
def __init__(self, *argv, **kwargs) -> None: ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.