Skip to main content

Wraparound-safe millisecond tick helpers plus wait value objects (deadlines, rates, signals) for CircuitPython, MicroPython, and CPython.

Project description

chumicro-timing

Timers that don't block. Your loop keeps ticking.

Capture ticks_ms() once per loop pass, hand it to a Rate or a Deadline, and you've got clean drift-free timing on CircuitPython, MicroPython, or CPython. Tick-source detection is automatic, wraparound is handled, and there are no dependencies on anything else in ChuMicro — it's where every other library starts.


Part of the ChuMicro family — small, focused Python libraries for microcontrollers and laptops. Browse all libraries.

Install

# CircuitPython (after `circup bundle-add ChuMicro/ChuMicro-Bundle`)
circup install chumicro-timing

# MicroPython
mpremote mip install github:ChuMicro/ChuMicro-Bundle/chumicro_timing

# CPython
pip install chumicro-timing

For bundle setup, pre-compiled .mpy bundles, the experimental channel, and details on PyPI naming, see the chumicro INSTALL guide.

Quick example

from chumicro_timing import Rate, ticks_ms

rate = Rate(1000, ticks_ms())

while True:
    now = ticks_ms()
    if rate.due(now):
        print("one second elapsed")
    # ... do other work ...

What's included

Tick functions

Symbol Description
ticks_ms() Current time in milliseconds — keeps counting even when it wraps around
ticks_diff(end, start) Time elapsed between two tick values (handles wraparound correctly)
ticks_add(ticks, delta) Add milliseconds to a tick value (handles wraparound correctly)

Value objects

Symbol Description
Deadline(period_ms, now_ms) A single armed timeout — expired(now) / remaining(now) / reset(now)
Rate(period_ms, now_ms) Drift-free periodic cadence; due(now) fires at most once per period

Wait vocabulary (chumicro_timing.waits)

Opt-in completion-wait vocabulary for generator flows — import explicitly.

Symbol Description
Signal() A completion flag — set(value) / clear() / ready(now)
wait_for(signal, deadline_ms=None) Generator suspension helper: yield from wait_for(signal)

Testing

Symbol Description
FakeTicks(start_ms=0) Deterministic tick source for host-side tests
FakeTicks.advance(amount_ms) Move the fake clock forward

Where this fits

Leaf — no upstream ChuMicro deps. Everything in ChuMicro that owns time depends on it: runner, sockets, ntp, requests, http_server, mqtt, websockets.

Platform support

You don't need to pick a tick source — the library picks the best one available on your runtime. Behavior is identical regardless of which source is used.

Source Runtime
supervisor.ticks_ms CircuitPython 7+
time.ticks_ms MicroPython, some CircuitPython builds
time.monotonic_ns CPython, some CircuitPython boards
time.monotonic Final fallback (float seconds → int ms)

The library tries them top-to-bottom and uses the first one your runtime supports.

Technical detail: tick wraparound

All sources are masked to a 2²⁹ ms period (~6.2 days). ticks_diff and ticks_add handle wraparound correctly, so your timers keep working even when the counter rolls over.

Testing your code

The chumicro_timing.testing module provides FakeTicks for deterministic host-side tests — no wall-clock waits:

from chumicro_timing import Rate
from chumicro_timing.testing import FakeTicks

fake = FakeTicks()
rate = Rate(100, fake.ticks_ms())

assert rate.due(fake.ticks_ms()) is False

fake.advance(100)
assert rate.due(fake.ticks_ms()) is True

Examples

Example What it shows
heartbeat_blink.py Basic periodic Rate loop
multiple_heartbeats.py Multiple Rate timers at different rates
timeout_check.py One-shot deadline check using ticks_diff
debounce.py Simulated button debounce
periodic_tick.py Manual periodic loop (the same logic Rate wraps internally)
phase_locked_tick.py Drift-free deadline carrier — same period across late loops
circuitpython_blink.py LED blink on CircuitPython hardware
circuitpython_debounce.py GPIO button debounce on CircuitPython
micropython_blink.py LED blink on MicroPython hardware
micropython_debounce.py GPIO button debounce on MicroPython

Contributing

Working on chumicro-timing itself? Clone the mono-repo if you haven't already — the rest of the workflow assumes you're inside that workspace.

pip install -e .[test]
pytest tests/                  # host-side tests
pytest functional_tests/       # on-device tests (needs a board registered in devices.yml)

Register a board before running functional tests: chumicro-workspace add-device <id> --address <port>.

Docs

📖 Stable docs · Experimental docs

Find this library

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chumicro_timing_experimental-0.8.0.tar.gz (29.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

chumicro_timing_experimental-0.8.0-py3-none-any.whl (10.0 kB view details)

Uploaded Python 3

File details

Details for the file chumicro_timing_experimental-0.8.0.tar.gz.

File metadata

File hashes

Hashes for chumicro_timing_experimental-0.8.0.tar.gz
Algorithm Hash digest
SHA256 9bac8490a1f8e8f75d8ebc15a4221fa51b115f65753712030fa41c87c01eeb27
MD5 ebe2f85f6c2eda4115a0ab717874cd9c
BLAKE2b-256 ffb0db181bb4f7d11c7686c5dc1120bd955ed36af3393ebb27b7d20d454409e3

See more details on using hashes here.

File details

Details for the file chumicro_timing_experimental-0.8.0-py3-none-any.whl.

File metadata

File hashes

Hashes for chumicro_timing_experimental-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 279443190062325f78a1ff3a68608989ab4101e2f05d8ab03e0f61da6f0b70f8
MD5 27ed11fe05ce7fd9569246a1a188e558
BLAKE2b-256 a3c78891ca97ae0a0adebea94e6e3fd3c64d59fe9c21d26f8758ae288a56cb31

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page