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
- PyPI: chumicro-timing
- Bundle: ChuMicro-Bundle (CircuitPython & MicroPython)
- Experimental bundle: ChuMicro-Bundle-Experimental
- Source: libraries/timing
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file chumicro_timing_experimental-0.8.0.tar.gz.
File metadata
- Download URL: chumicro_timing_experimental-0.8.0.tar.gz
- Upload date:
- Size: 29.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9bac8490a1f8e8f75d8ebc15a4221fa51b115f65753712030fa41c87c01eeb27
|
|
| MD5 |
ebe2f85f6c2eda4115a0ab717874cd9c
|
|
| BLAKE2b-256 |
ffb0db181bb4f7d11c7686c5dc1120bd955ed36af3393ebb27b7d20d454409e3
|
File details
Details for the file chumicro_timing_experimental-0.8.0-py3-none-any.whl.
File metadata
- Download URL: chumicro_timing_experimental-0.8.0-py3-none-any.whl
- Upload date:
- Size: 10.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
279443190062325f78a1ff3a68608989ab4101e2f05d8ab03e0f61da6f0b70f8
|
|
| MD5 |
27ed11fe05ce7fd9569246a1a188e558
|
|
| BLAKE2b-256 |
a3c78891ca97ae0a0adebea94e6e3fd3c64d59fe9c21d26f8758ae288a56cb31
|