You've already forked jumperless-breadboard
mirror of
https://github.com/Architeuthis-Flux/Jumperless.git
synced 2026-07-15 05:14:09 +00:00
20 lines
717 B
Python
20 lines
717 B
Python
# AUTO-GENERATED by JumperIDE ("Initialize Jumperless Project").
|
|
# Edits will be overwritten. Re-run the command to regenerate.
|
|
"""MicroPython `time` extras for editor tooling (not uploaded to the board).
|
|
|
|
CPython's `time` stub lacks ticks_*/sleep_ms/sleep_us. This shadows it with
|
|
the MicroPython surface; the __getattr__ fallback keeps the rest as Any."""
|
|
|
|
from typing import Any
|
|
|
|
def sleep(seconds: float) -> None: ...
|
|
def sleep_ms(ms: int) -> None: ...
|
|
def sleep_us(us: int) -> None: ...
|
|
def ticks_ms() -> int: ...
|
|
def ticks_us() -> int: ...
|
|
def ticks_cpu() -> int: ...
|
|
def ticks_add(ticks: int, delta: int) -> int: ...
|
|
def ticks_diff(ticks1: int, ticks2: int) -> int: ...
|
|
|
|
def __getattr__(name: str) -> Any: ...
|