Introduction
============
.. image:: https://readthedocs.org/projects/adafruit-circuitpython-boardtest/badge/?version=latest
:target: https://docs.circuitpython.org/projects/boardtest/en/latest/
:alt: Documentation Status
.. image:: https://raw.githubusercontent.com/adafruit/Adafruit_CircuitPython_Bundle/main/badges/adafruit_discord.svg
:target: https://adafru.it/discord
:alt: Discord
.. image:: https://github.com/adafruit/Adafruit_CircuitPython_BoardTest/workflows/Build%20CI/badge.svg
:target: https://github.com/adafruit/Adafruit_CircuitPython_BoardTest/actions/
:alt: Build Status
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/psf/black
:alt: Code Style: Black
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:
* `Adafruit CircuitPython <https://github.com/adafruit/circuitpython>`_
* `Bus Device <https://github.com/adafruit/Adafruit_CircuitPython_BusDevice>`_
* `SD Card <https://github.com/adafruit/Adafruit_CircuitPython_SD>`_
Please ensure all dependencies are available on the CircuitPython filesystem.
This is easily achieved by downloading
`the Adafruit library and driver bundle <https://github.com/adafruit/Adafruit_CircuitPython_Bundle>`_.
Usage Example
=============
You will need the following components:
* `Multimeter <https://www.adafruit.com/product/2034>`_
* 1x `LED <https://www.adafruit.com/product/299>`_
* 1x 330 Ohm resistor or `220 Ohm resistor <https://www.adafruit.com/product/2780>`_
* 2x `4.7k Ohm resistor <https://www.adafruit.com/product/2783>`_
* `Microchip 25AA040A SPI EEPROM <https://www.digikey.com/product-detail/en/microchip-technology/25AA040A-I-P/25AA040A-I-P-ND/1212469>`_
* `Microchip AT24HC04B I2C EEPROM <https://www.digikey.com/product-detail/en/microchip-technology/AT24HC04B-PU/AT24HC04B-PU-ND/1886137>`_
* 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.
.. image:: https://github.com/adafruit/Adafruit_CircuitPython_BoardTest/blob/main/docs/test_jig.png
:alt: 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:
.. code:: python
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 <https://docs.circuitpython.org/projects/boardtest/en/latest/>`_.
For information on building library documentation, please check out `this guide <https://learn.adafruit.com/creating-and-sharing-a-circuitpython-library/sharing-our-docs-on-readthedocs#sphinx-5-1>`_.
Contributing
============
Contributions are welcome! Please read our `Code of Conduct
<https://github.com/adafruit/Adafruit_CircuitPython_BoardTest/blob/main/CODE_OF_CONDUCT.md>`_
before contributing to help this project stay welcoming.
Raw data
{
"_id": null,
"home_page": null,
"name": "adafruit-circuitpython-boardtest",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "adafruit, boardtest, board, test, testing, hardware, micropythoncircuitpython",
"author": null,
"author_email": "Adafruit Industries <circuitpython@adafruit.com>",
"download_url": "https://files.pythonhosted.org/packages/19/3a/37b054d0183f73c6897b0861f364ab6811cf1adacbe86f3e1ff68348c703/adafruit_circuitpython_boardtest-1.2.22.tar.gz",
"platform": null,
"description": "Introduction\n============\n\n.. image:: https://readthedocs.org/projects/adafruit-circuitpython-boardtest/badge/?version=latest\n :target: https://docs.circuitpython.org/projects/boardtest/en/latest/\n :alt: Documentation Status\n\n.. image:: https://raw.githubusercontent.com/adafruit/Adafruit_CircuitPython_Bundle/main/badges/adafruit_discord.svg\n :target: https://adafru.it/discord\n :alt: Discord\n\n.. image:: https://github.com/adafruit/Adafruit_CircuitPython_BoardTest/workflows/Build%20CI/badge.svg\n :target: https://github.com/adafruit/Adafruit_CircuitPython_BoardTest/actions/\n :alt: Build Status\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n :target: https://github.com/psf/black\n :alt: Code Style: Black\n\nBoard 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.\n\nTests can be run individually. Copy code found in each *boardtest_<name>.py* module to your CIRCUITPYTHON device drive, and rename the file *code.py*.\n\nAlternatively, 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.\n\nThe *boardtest_simpletest.py* (in *examples/*) shows how to call tests from within a script. *boardtest_simpletest.py* runs the following tests:\n\n * LED Test\n * GPIO Test\n * Voltage Monitor Test\n * UART Test\n * SPI Test\n * I2C Test\n\nDependencies\n=============\nThis test suite depends on:\n\n* `Adafruit CircuitPython <https://github.com/adafruit/circuitpython>`_\n* `Bus Device <https://github.com/adafruit/Adafruit_CircuitPython_BusDevice>`_\n* `SD Card <https://github.com/adafruit/Adafruit_CircuitPython_SD>`_\n\nPlease ensure all dependencies are available on the CircuitPython filesystem.\nThis is easily achieved by downloading\n`the Adafruit library and driver bundle <https://github.com/adafruit/Adafruit_CircuitPython_Bundle>`_.\n\nUsage Example\n=============\n\nYou will need the following components:\n\n* `Multimeter <https://www.adafruit.com/product/2034>`_\n* 1x `LED <https://www.adafruit.com/product/299>`_\n* 1x 330 Ohm resistor or `220 Ohm resistor <https://www.adafruit.com/product/2780>`_\n* 2x `4.7k Ohm resistor <https://www.adafruit.com/product/2783>`_\n* `Microchip 25AA040A SPI EEPROM <https://www.digikey.com/product-detail/en/microchip-technology/25AA040A-I-P/25AA040A-I-P-ND/1212469>`_\n* `Microchip AT24HC04B I2C EEPROM <https://www.digikey.com/product-detail/en/microchip-technology/AT24HC04B-PU/AT24HC04B-PU-ND/1886137>`_\n* Breadboard\n* Wires\n\nConnect the components as shown to your board. Note that you can use a 220 Ohm or 330 Ohm resistor for the LED.\n\n.. image:: https://github.com/adafruit/Adafruit_CircuitPython_BoardTest/blob/main/docs/test_jig.png\n :alt: Test jig Fritzing diagram\n\nTo 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:\n\n.. code:: python\n\n import board\n from adafruit_boardtest import boardtest_gpio\n\n # List out all the pins available to us\n pins = [p for p in dir(board)]\n print()\n print(\"All pins found:\", end=' ')\n\n # Print pins\n for p in pins:\n print(p, end=' ')\n print('\\n')\n\n # Run test\n result = run_test(pins)\n print()\n print(result[0])\n print(\"Pins tested: \" + str(result[1]))\n\n\nDocumentation\n=============\n\nAPI documentation for this library can be found on `Read the Docs <https://docs.circuitpython.org/projects/boardtest/en/latest/>`_.\n\nFor information on building library documentation, please check out `this guide <https://learn.adafruit.com/creating-and-sharing-a-circuitpython-library/sharing-our-docs-on-readthedocs#sphinx-5-1>`_.\n\nContributing\n============\n\nContributions are welcome! Please read our `Code of Conduct\n<https://github.com/adafruit/Adafruit_CircuitPython_BoardTest/blob/main/CODE_OF_CONDUCT.md>`_\nbefore contributing to help this project stay welcoming.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Helper for verifying a board definition works as expected",
"version": "1.2.22",
"project_urls": {
"Homepage": "https://github.com/adafruit/Adafruit_CircuitPython_BoardTest"
},
"split_keywords": [
"adafruit",
" boardtest",
" board",
" test",
" testing",
" hardware",
" micropythoncircuitpython"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "11261b092c2dd93045b09168ce7b1c07e3c8df75c5756415c78f42d1a2417d79",
"md5": "2c137ec7eb21a9fa6affcad25e82011c",
"sha256": "ce26b8fee2b02d2e921bfbc85ada4e6dadcb6088fe897b19796e0a1d5223f949"
},
"downloads": -1,
"filename": "adafruit_circuitpython_boardtest-1.2.22-py3-none-any.whl",
"has_sig": false,
"md5_digest": "2c137ec7eb21a9fa6affcad25e82011c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 18014,
"upload_time": "2025-01-16T19:31:34",
"upload_time_iso_8601": "2025-01-16T19:31:34.997725Z",
"url": "https://files.pythonhosted.org/packages/11/26/1b092c2dd93045b09168ce7b1c07e3c8df75c5756415c78f42d1a2417d79/adafruit_circuitpython_boardtest-1.2.22-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "193a37b054d0183f73c6897b0861f364ab6811cf1adacbe86f3e1ff68348c703",
"md5": "1c10742ef8a72bfe50733c6d8bd21859",
"sha256": "e49ab1a82aa83b9616c0defe747e5b5dce2b62011c9b0a84cd984d38b84cacee"
},
"downloads": -1,
"filename": "adafruit_circuitpython_boardtest-1.2.22.tar.gz",
"has_sig": false,
"md5_digest": "1c10742ef8a72bfe50733c6d8bd21859",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 351950,
"upload_time": "2025-01-16T19:31:37",
"upload_time_iso_8601": "2025-01-16T19:31:37.777448Z",
"url": "https://files.pythonhosted.org/packages/19/3a/37b054d0183f73c6897b0861f364ab6811cf1adacbe86f3e1ff68348c703/adafruit_circuitpython_boardtest-1.2.22.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-01-16 19:31:37",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "adafruit",
"github_project": "Adafruit_CircuitPython_BoardTest",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "Adafruit-Blinka",
"specs": []
},
{
"name": "adafruit-circuitpython-sd",
"specs": []
},
{
"name": "adafruit-circuitpython-busdevice",
"specs": []
}
],
"lcname": "adafruit-circuitpython-boardtest"
}