Helper for verifying a board definition works as expected
Project description
Introduction
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:
1x LED
1x 330 Ohm resistor or 220 Ohm resistor
Breadboard
Wires
Connect the components as shown to your board. Note that you can use a 220 Ohm or 330 Ohm resistor for the LED.
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
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
File details
Details for the file adafruit_circuitpython_boardtest-1.2.21.tar.gz
.
File metadata
- Download URL: adafruit_circuitpython_boardtest-1.2.21.tar.gz
- Upload date:
- Size: 352.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 172d691ae648e82c8064cb46498fbacdec48062fb9fe52fe9a29eb015df22678 |
|
MD5 | 7176bbb40e873e2c820ab447ac2f6b96 |
|
BLAKE2b-256 | 7b591e2147b03743565f35b0fe82400161e1538bc21cfb6db480e46788d4a164 |
File details
Details for the file adafruit_circuitpython_boardtest-1.2.21-py3-none-any.whl
.
File metadata
- Download URL: adafruit_circuitpython_boardtest-1.2.21-py3-none-any.whl
- Upload date:
- Size: 18.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b782fd3815f992639b41eafbe29153252b9faa9997703407556c864f310cd7c2 |
|
MD5 | 75cbd4dba6c6f53917c4035feb07e449 |
|
BLAKE2b-256 | 1f2268ae1d1e8ab29fe4cc556d3e61fac7808fad19bddcc3c918c882907a13cd |