Skip to main content

DPEA_DPi

Python drivers for the DPEA Pi family of circuit boards developed by Stan Reifel.

Installation

Add the package to an exhibit project:

uv add dpeaDPi

On the DPEA Raspberry Pi image, this also installs rpi-lgpio, which provides the RPi.GPIO module used by DPiComputer. The image includes the native build dependencies required by lgpio on Python 3.13.

RS485 drivers do not open /dev/serial0 when they are imported or constructed. The default shared network opens it when the first command is sent. Tests and applications can pass a configured DPiNetwork or another compatible network object into a board constructor. The package does not automatically select a simulated hardware backend.

DPiNetwork.sendCommand() returns (True, failed_count) on success and raises DPiCommunicationError for exhausted retries or serial failures. Its pop*() methods raise the same exception for insufficient response data. Injected network implementations must follow this exception contract. Network errors include the available address, command, and retry count. The traceback identifies the caller.

DPiComputer also initializes GPIO and I2C on first use. Its constructor accepts compatible gpio and i2cBus objects for integration tests.

Input validation

Driver methods accept ordinary Python values, with type hints for editor checks and runtime validation before hardware I/O or simulated state changes. Invalid arguments raise ValueError, including Pydantic's ValidationError.

Testing without hardware

There are three separate layers for running without physical boards. Pick the one that matches what you are doing.

  1. Low-level injection (for this package's own tests). Every driver accepts an injected transport or backend: DPiNetwork(serialPort=...) for the RS485 boards, and DPiComputer(gpio=..., i2cBus=...) for GPIO and I2C. This exercises packet and pin behavior. Consumers should not need to emulate packets or pins.

  2. Board simulation (for consumer applications and tests). The dpeaDPi.simulation package provides a SimulatedDPiXxx for each board with the same public methods as the real driver, so application code runs unchanged against either. Simulated physical input (button presses, sensor changes, motion completion) is driven through a separate .controls object. The simulators use no serial, GPIO, I2C, real sleeps, or threads, and one injected SimClock gives deterministic timing.

    from dpeaDPi import DPiCommunicationError
    from dpeaDPi.simulation import SimState, SimulatedDPiButton
    
    state = SimState()
    button = SimulatedDPiButton(state=state)
    button.controls.press(0)
    assert button.readRGBButtonLatch(0) is True
    
    state.fail_next("button", "readRGBButtonLatch")
    try:
        button.readRGBButtonLatch(0)
    except DPiCommunicationError as error:
        assert error.operation == "readRGBButtonLatch"
    

    Import the simulators explicitly. Nothing is auto-selected based on the operating system, and the real drivers never import this package.

  3. Consumer composition (for structuring an exhibit). Choose real or simulated hardware once, at the application's composition root, and keep the decision out of business logic.

The scripts in DPi_Examples run against real hardware only.

Development

Install the locked project and development dependencies:

uv sync --locked --all-groups

Run the tests and build both package distributions:

uv run --locked pytest
uv run --locked pyrefly check
uv build --no-sources

Pyrefly runs in strict mode over the library and examples and gates CI. Test fixture parameters and lambdas may remain inferred, while their bodies and real/simulator protocol assignments in tests/typecheck_protocols.py are still checked.

Behavioral test suite

The tests have both fixed cases and hypothesis generated test cases (property based testing). The fixed cases test the addresses, commands, field order, byte encoding, decoded values, and GPIO pin mappings.
The generated cases then test useful input domains and short state or recovery sequences without replacing those independent tests.

These tests require no physical boards. RS485 driver tests run real DPiNetwork framing and parsing against a scripted serial port. Cases specify expected payload and response bytes, so equivalent uses of the integer push and pop helpers remain interchangeable. DPiComputer tests inject GPIO, PWM, and strict integer-byte I2C backends. Controlled clocks and patched sleeps keep retry and multi-board tests deterministic.

Covered behavior includes:

  • Board addresses, command routing, payload fields, signed values, and response decoding.
  • Transport retries, partial responses, checksum rejection, parser recovery, and transaction isolation.
  • GPIO mapping, PWM lifecycle and channel isolation, Pico I2C values, and pixel upload order.
  • Stepper and Robot configuration, homing, movement, buffering, failure exits, and later recovery.

Run the complete suite or only the generated cases:

uv run --locked pytest -q
uv run --locked pytest -q tests -k generated

The suite has no public method inventory, count assertion, or registration tests. When extending a driver, add expected inputs, wire or GPIO outputs, decoded results, and relevant failure cases to a suitable existing fixture or a focused direct or flow test. A WireCase row is useful for a single-command RS485 path, but it is optional. Multi-command operations need behavioral tests that check required ordering and failure outcomes. Homing tests allow independent motor polls to vary while requiring stops before reversals and cleanup on abort.

Test observable contracts instead of private object layout or unnecessary ordering between independent operations. Preserve required ordering on the same channel, such as stopping PWM before a digital write. New public behavior still needs meaningful tests even though no registry detects it automatically.

Use fixed cases for command numbers, pin mappings, and literal packet anchors. Use generated cases for value boundaries, interleaved state transitions, and failure recovery. A later successful read or motion operation checks recovery beyond a successful ping.

Releases

Confirm representative board behavior on physical hardware before releasing v2. Packet and simulation tests do not establish electrical or motion behavior.

Merging a new package version into main runs the full test and package checks. CI creates a tag such as v1.0.0 from the version in pyproject.toml, then publishes the exact artifacts to PyPI with Trusted Publishing. No manual tag or PyPI upload is required.

Configure the PyPI trusted publisher once with these values:

  • Owner: dpengineering
  • Repository: DPEA_DPi
  • Workflow: publish.yml
  • Environment: pypi

No PyPI token is stored in GitHub.

Download files

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

Source Distribution

dpeadpi-2.0.0.tar.gz (57.3 kB view details)

Uploaded Source

Built Distribution

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

dpeadpi-2.0.0-py3-none-any.whl (78.9 kB view details)

Uploaded Python 3

File details

Details for the file dpeadpi-2.0.0.tar.gz.

File metadata

  • Download URL: dpeadpi-2.0.0.tar.gz
  • Upload date:
  • Size: 57.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dpeadpi-2.0.0.tar.gz
Algorithm Hash digest
SHA256 79e2cef1ee4b42944b743b628d26b09e0c5a51d45234ef85b028787467c0e29d
MD5 2fef61fdc5f98091b72b75be2113822f
BLAKE2b-256 db1d3ab601b11ec910fd0583c869534f73d7d00fc5400babfd7862513786dbdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for dpeadpi-2.0.0.tar.gz:

Publisher: publish.yml on dpengineering/DPEA_DPi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dpeadpi-2.0.0-py3-none-any.whl.

File metadata

  • Download URL: dpeadpi-2.0.0-py3-none-any.whl
  • Upload date:
  • Size: 78.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dpeadpi-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 849791af7e78409b3768d1c3e6fd6def9f8dd19aa0dc77664cd78f8e646bd083
MD5 bce466636dc87166be24854e0214c139
BLAKE2b-256 cf0fded6de31075f8c80e095e5170f5627367b7ec071b9fc613ba482ce3b0b22

See more details on using hashes here.

Provenance

The following attestation bundles were made for dpeadpi-2.0.0-py3-none-any.whl:

Publisher: publish.yml on dpengineering/DPEA_DPi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

2.0.0 This release

2 files

1.2.1

2 files

1.2.0

2 files

1.1.0

2 files

1.0.1

2 files

0.1.7

2 files

0.1.6

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

0.0.12

2 files

0.0.11

2 files

0.0.10

2 files

0.0.9

2 files

0.0.8

2 files

0.0.6

2 files

0.0.5

2 files

0.0.4

2 files

0.0.3

2 files

0.0.2

2 files

0.0.1

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page