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

15
.vscode/Pico-W-Stub/neopixel.pyi vendored Normal file
View File

@@ -0,0 +1,15 @@
from _typeshed import Incomplete
class NeoPixel:
ORDER: Incomplete
pin: Incomplete
n: Incomplete
bpp: Incomplete
buf: Incomplete
timing: Incomplete
def __init__(self, pin, n, bpp: int = ..., timing: int = ...) -> None: ...
def __len__(self) -> int: ...
def __setitem__(self, i, v) -> None: ...
def __getitem__(self, i): ...
def fill(self, v) -> None: ...
def write(self) -> None: ...