:mod:`adafruit_pixelbuf` ======================== .. py:module:: adafruit_pixelbuf .. autoapi-nested-parse:: A fast RGB(W) pixel buffer library for like NeoPixel and DotStar The `adafruit_pixelbuf` module provides the :py:class:`PixelBuf` class to accelerate RGB(W) strip/matrix manipulation, such as DotStar and Neopixel. Also available as ``_pixelbuf``. This usage has been deprecated. Byteorders are configured with strings, such as "RGB" or "RGBD". .. raw:: html

Available on these boards

.. py:class:: PixelBuf(size: int, *, byteorder: str = 'BGR', brightness: float = 0, auto_write: bool = False, header: _typing.ReadableBuffer = b'', trailer: _typing.ReadableBuffer = b'') A fast RGB[W] pixel buffer for LED and similar devices. Create a PixelBuf object of the specified size, byteorder, and bits per pixel. When brightness is less than 1.0, a second buffer will be used to store the color values before they are adjusted for brightness. When ``P`` (PWM duration) is present as the 4th character of the byteorder string, the 4th value in the tuple/list for a pixel is the individual pixel brightness (0.0-1.0) and will enable a Dotstar compatible 1st byte for each pixel. :param int size: Number of pixels :param str byteorder: Byte order string (such as "RGB", "RGBW" or "PBGR") :param float brightness: Brightness (0 to 1.0, default 1.0) :param bool auto_write: Whether to automatically write pixels (Default False) :param ~_typing.ReadableBuffer header: Sequence of bytes to always send before pixel values. :param ~_typing.ReadableBuffer trailer: Sequence of bytes to always send after pixel values. .. py:attribute:: bpp :annotation: :int The number of bytes per pixel in the buffer (read-only) .. py:attribute:: brightness :annotation: :float Float value between 0 and 1. Output brightness. When brightness is less than 1.0, a second buffer will be used to store the color values before they are adjusted for brightness. .. py:attribute:: auto_write :annotation: :bool Whether to automatically write the pixels after each update. .. py:attribute:: byteorder :annotation: :str byteorder string for the buffer (read-only) .. py:method:: show() -> None Transmits the color data to the pixels so that they are shown. This is done automatically when `auto_write` is True. .. py:method:: fill(color: Union[int, Tuple[int, int, int], Tuple[int, int, int, float]]) -> None Fills the given pixelbuf with the given color. .. py:method:: __getitem__(index: slice) -> Union[Tuple[Tuple[int, int, int], Ellipsis], Tuple[Tuple[int, int, int, float], Ellipsis]] __getitem__(index: int) -> Union[Tuple[int, int, int], Tuple[int, int, int, float]] Returns the pixel value at the given index as a tuple of (Red, Green, Blue[, White]) values between 0 and 255. When in PWM (DotStar) mode, the 4th tuple value is a float of the pixel intensity from 0-1.0. .. py:method:: __setitem__(index: slice, value: Tuple[Union[int, Tuple[float, Ellipsis], List[float]], Ellipsis]) -> None __setitem__(index: slice, value: List[Union[int, Tuple[float, Ellipsis], List[float]]]) -> None __setitem__(index: int, value: Union[int, Tuple[float, Ellipsis], List[float]]) -> None Sets the pixel value at the given index. Value can either be a tuple or integer. Tuples are The individual (Red, Green, Blue[, White]) values between 0 and 255. If given an integer, the red, green and blue values are packed into the lower three bytes (0xRRGGBB). For RGBW byteorders, if given only RGB values either as an int or as a tuple, the white value is used instead when the red, green, and blue values are the same.