Skip to main content

Helper for verifying a board definition works as expected

Project description

Introduction

Documentation Status Discord Build Status Code Style: Ruff

Board test suite for CircuitPython. Run these tests to ensure that a CircuitPython port was created correctly, individual pin mappings are correct, and buses (e.g. SPI) work.

Tests can be run individually. Copy code found in each boardtest_<name>.py module to your CIRCUITPYTHON device drive, and rename the file code.py.

Alternatively, tests can be imported as modules. Copy the desired test file to CIRCUITPYTHON device drive and import the test in your own code. Each test can be run with the run_test(pins) function.

The boardtest_simpletest.py (in examples/) shows how to call tests from within a script. boardtest_simpletest.py runs the following tests:

  • LED Test

  • GPIO Test

  • Voltage Monitor Test

  • UART Test

  • SPI Test

  • I2C Test

Dependencies

This test suite depends on:

Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle.

Usage Example

You will need the following components:

Connect the components as shown to your board. Note that you can use a 220 Ohm or 330 Ohm resistor for the LED.

Test jig Fritzing diagram

To use each test, copy the individual .py or .mpy test(s) into a folder named adafruit_boardtest in the CIRCUITPY drive, import the library, find the pins available on your board, and call boardtest_<test name>.run_test(pins). To run the GPIO test, for example:

import board
from adafruit_boardtest import boardtest_gpio

# List out all the pins available to us
pins = [p for p in dir(board)]
print()
print("All pins found:", end=' ')

# Print pins
for p in pins:
    print(p, end=' ')
print('\n')

# Run test
result = run_test(pins)
print()
print(result[0])
print("Pins tested: " + str(result[1]))

Documentation

API documentation for this library can be found on Read the Docs.

For information on building library documentation, please check out this guide.

Contributing

Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.

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

adafruit_circuitpython_boardtest-1.2.27.tar.gz (349.0 kB view details)

Uploaded Source

Built Distribution

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

File details

Details for the file adafruit_circuitpython_boardtest-1.2.27.tar.gz.

File metadata

File hashes

Hashes for adafruit_circuitpython_boardtest-1.2.27.tar.gz
Algorithm Hash digest
SHA256 52f93029e357a3663f937d523b4f617e6bf58447c33c5723322607e3727cc1f1
MD5 fdb0601d910c6a10cf63688a62b23d72
BLAKE2b-256 a0231d4c73bd8324bb84f02bfd3f3c5b30ed34e6e745362d3b5033e92c095bdd

See more details on using hashes here.

File details

Details for the file adafruit_circuitpython_boardtest-1.2.27-py3-none-any.whl.

File metadata

File hashes

Hashes for adafruit_circuitpython_boardtest-1.2.27-py3-none-any.whl
Algorithm Hash digest
SHA256 febaf436d98bfd2225b5fefcdb304a96bedbccf761bf2248d508b236d1e9173f
MD5 cb0b7e4d060d8a1cdf4b169940ed6704
BLAKE2b-256 28ba115015be6b5f050b46b146da46b28f2b9738190851b5e02b3fb4adfa3084

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