Files
PiDoorbell/.vscode/Pico-W-Stub/neopixel.pyi
Ádám Kovács db76621806 Project v1
2023-11-02 16:02:16 +01:00

16 lines
433 B
Python

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: ...