Introduction
============
.. image:: https://readthedocs.org/projects/adafruit-circuitpython-neopxl8/badge/?version=latest
:target: https://docs.circuitpython.org/projects/neopxl8/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_neopxl8/workflows/Build%20CI/badge.svg
:target: https://github.com/adafruit/Adafruit_CircuitPython_neopxl8/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
PIO-driven 8-way concurrent NeoPixel driver for RP2040
Dependencies
=============
This driver depends on:
* `Adafruit CircuitPython <https://github.com/adafruit/circuitpython>`_
* `pioasm <https://github.com/adafruit/Adafruit_CircuitPython_pioasm>`_
Please ensure all dependencies are available on the CircuitPython filesystem.
This is easily achieved by downloading
`the Adafruit library and driver bundle <https://circuitpython.org/libraries>`_
or individual libraries can be installed using
`circup <https://github.com/adafruit/circup>`_.
Installing to a Connected CircuitPython Device with Circup
==========================================================
Make sure that you have ``circup`` installed in your Python environment.
Install it with the following command if necessary:
.. code-block:: shell
pip3 install circup
With ``circup`` installed and your CircuitPython device connected use the
following command to install:
.. code-block:: shell
circup install adafruit_neopxl8
Or the following command to update an existing version:
.. code-block:: shell
circup update
Usage Example
=============
See the `Examples page <examples.html>`_ for a full example. This example shows how to set up 8 30-pixel LED strands on an Adafruit Feather Scorpio RP2040 and set them all to dim red:
.. code-block:: python
import time
import board
from adafruit_neopxl8 import NeoPxl8
# Customize for your strands here
num_strands = 8
strand_length = 30
first_led_pin = board.NEOPIXEL0
num_pixels = num_strands * strand_length
# Make the object to control the pixels
pixels = NeoPxl8(
first_led_pin,
num_pixels,
num_strands=num_strands,
)
pixels.fill(0x01_00_00)
while True:
time.sleep(1)
Documentation
=============
API documentation for this library can be found on `Read the Docs <https://docs.circuitpython.org/projects/neopxl8/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_neopxl8/blob/HEAD/CODE_OF_CONDUCT.md>`_
before contributing to help this project stay welcoming.
Raw data
{
"_id": null,
"home_page": null,
"name": "adafruit-circuitpython-neopxl8",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "adafruit, blinka, circuitpython, micropython, neopxl8, neopixel, rp2040, rgb, rgbw, led, animation",
"author": null,
"author_email": "Adafruit Industries <circuitpython@adafruit.com>",
"download_url": "https://files.pythonhosted.org/packages/e5/30/1e509d1b716b6d5336c9785401cf09d037a90b216ae5b4fe950003b62ac2/adafruit_circuitpython_neopxl8-0.3.0.tar.gz",
"platform": null,
"description": "Introduction\n============\n\n\n.. image:: https://readthedocs.org/projects/adafruit-circuitpython-neopxl8/badge/?version=latest\n :target: https://docs.circuitpython.org/projects/neopxl8/en/latest/\n :alt: Documentation Status\n\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\n.. image:: https://github.com/adafruit/Adafruit_CircuitPython_neopxl8/workflows/Build%20CI/badge.svg\n :target: https://github.com/adafruit/Adafruit_CircuitPython_neopxl8/actions\n :alt: Build Status\n\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\nPIO-driven 8-way concurrent NeoPixel driver for RP2040\n\n\nDependencies\n=============\nThis driver depends on:\n\n* `Adafruit CircuitPython <https://github.com/adafruit/circuitpython>`_\n* `pioasm <https://github.com/adafruit/Adafruit_CircuitPython_pioasm>`_\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://circuitpython.org/libraries>`_\nor individual libraries can be installed using\n`circup <https://github.com/adafruit/circup>`_.\n\nInstalling to a Connected CircuitPython Device with Circup\n==========================================================\n\nMake sure that you have ``circup`` installed in your Python environment.\nInstall it with the following command if necessary:\n\n.. code-block:: shell\n\n pip3 install circup\n\nWith ``circup`` installed and your CircuitPython device connected use the\nfollowing command to install:\n\n.. code-block:: shell\n\n circup install adafruit_neopxl8\n\nOr the following command to update an existing version:\n\n.. code-block:: shell\n\n circup update\n\nUsage Example\n=============\n\nSee the `Examples page <examples.html>`_ for a full example. This example shows how to set up 8 30-pixel LED strands on an Adafruit Feather Scorpio RP2040 and set them all to dim red:\n\n.. code-block:: python\n\n import time\n import board\n from adafruit_neopxl8 import NeoPxl8\n\n # Customize for your strands here\n num_strands = 8\n strand_length = 30\n first_led_pin = board.NEOPIXEL0\n\n num_pixels = num_strands * strand_length\n\n # Make the object to control the pixels\n pixels = NeoPxl8(\n first_led_pin,\n num_pixels,\n num_strands=num_strands,\n )\n\n pixels.fill(0x01_00_00)\n\n while True:\n time.sleep(1)\n\n\nDocumentation\n=============\nAPI documentation for this library can be found on `Read the Docs <https://docs.circuitpython.org/projects/neopxl8/en/latest/>`_.\n\nFor information on building library documentation, please check out\n`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_neopxl8/blob/HEAD/CODE_OF_CONDUCT.md>`_\nbefore contributing to help this project stay welcoming.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "PIO-driven 8-way concurrent NeoPixel driver for RP2040",
"version": "0.3.0",
"project_urls": {
"Homepage": "https://github.com/adafruit/Adafruit_CircuitPython_neopxl8"
},
"split_keywords": [
"adafruit",
" blinka",
" circuitpython",
" micropython",
" neopxl8",
" neopixel",
" rp2040",
" rgb",
" rgbw",
" led",
" animation"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "522bd1afed92d330a03a24c57bd3be0ab3af4393ef2345ace767be813b2059e4",
"md5": "8e89d16e90bb01771a255d64bb9af222",
"sha256": "df476603863a25df8e410fe3fe707a04e5cee409cc4f9c7c73d4da940a4ab6f0"
},
"downloads": -1,
"filename": "adafruit_circuitpython_neopxl8-0.3.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "8e89d16e90bb01771a255d64bb9af222",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 6286,
"upload_time": "2024-11-06T02:26:53",
"upload_time_iso_8601": "2024-11-06T02:26:53.704454Z",
"url": "https://files.pythonhosted.org/packages/52/2b/d1afed92d330a03a24c57bd3be0ab3af4393ef2345ace767be813b2059e4/adafruit_circuitpython_neopxl8-0.3.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e5301e509d1b716b6d5336c9785401cf09d037a90b216ae5b4fe950003b62ac2",
"md5": "14477c5af7033b24c6ded6329cb2aea1",
"sha256": "773c96636717574435dc8fa6529f9a75834176a57206b71d7492f7c6f11fc58e"
},
"downloads": -1,
"filename": "adafruit_circuitpython_neopxl8-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "14477c5af7033b24c6ded6329cb2aea1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28168,
"upload_time": "2024-11-06T02:26:55",
"upload_time_iso_8601": "2024-11-06T02:26:55.004559Z",
"url": "https://files.pythonhosted.org/packages/e5/30/1e509d1b716b6d5336c9785401cf09d037a90b216ae5b4fe950003b62ac2/adafruit_circuitpython_neopxl8-0.3.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-06 02:26:55",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "adafruit",
"github_project": "Adafruit_CircuitPython_neopxl8",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "Adafruit-Blinka",
"specs": []
},
{
"name": "Adafruit-CircuitPython-pioasm",
"specs": []
},
{
"name": "Adafruit-CircuitPython-PixelBuf",
"specs": []
}
],
"lcname": "adafruit-circuitpython-neopxl8"
}