adafruit-circuitpython-hx8357


Nameadafruit-circuitpython-hx8357 JSON
Version 1.4.3 PyPI version JSON
download
home_pageNone
Summarydisplayio driver for hx8357 and ILI9340 TFT-LCD displays.
upload_time2024-04-01 15:23:40
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseMIT
keywords adafruit blinka circuitpython micropython hx8357 display tft lcd displayio
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Introduction
============

.. image:: https://readthedocs.org/projects/adafruit-circuitpython-hx8357/badge/?version=latest
    :target: https://docs.circuitpython.org/projects/hx8357/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_HX8357/workflows/Build%20CI/badge.svg
    :target: https://github.com/adafruit/Adafruit_CircuitPython_HX8357/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

displayio Driver for HX8357 Displays such as the 3.5-inch TFT FeatherWing and Breakout


Dependencies
=============
This driver depends on:

* `Adafruit CircuitPython <https://github.com/adafruit/circuitpython>`_

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
=============

.. code-block:: python

    import board
    import displayio
    from adafruit_hx8357 import HX8357

    spi = board.SPI()
    tft_cs = board.D9
    tft_dc = board.D10

    displayio.release_displays()
    display_bus = displayio.FourWire(spi, command=tft_dc, chip_select=tft_cs)

    display = HX8357(display_bus, width=480, height=320)

    # Make the display context
    splash = displayio.Group()
    display.show(splash)

    color_bitmap = displayio.Bitmap(480, 320, 1)
    color_palette = displayio.Palette(1)
    color_palette[0] = 0xFF0000

    bg_sprite = displayio.TileGrid(color_bitmap,
                                   pixel_shader=color_palette,
                                   x=0, y=0)
    splash.append(bg_sprite)

    while True:
        pass

Documentation
=============

API documentation for this library can be found on `Read the Docs <https://docs.circuitpython.org/projects/hx8357/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_HX8357/blob/main/CODE_OF_CONDUCT.md>`_
before contributing to help this project stay welcoming.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "adafruit-circuitpython-hx8357",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "adafruit, blinka, circuitpython, micropython, hx8357, display, tft, lcd, displayio",
    "author": null,
    "author_email": "Adafruit Industries <circuitpython@adafruit.com>",
    "download_url": "https://files.pythonhosted.org/packages/eb/ad/3e69e5de3bc3078706ee3c9b696128e1faa5ef77b88c8641b95fb7746ec3/adafruit-circuitpython-hx8357-1.4.3.tar.gz",
    "platform": null,
    "description": "Introduction\n============\n\n.. image:: https://readthedocs.org/projects/adafruit-circuitpython-hx8357/badge/?version=latest\n    :target: https://docs.circuitpython.org/projects/hx8357/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_HX8357/workflows/Build%20CI/badge.svg\n    :target: https://github.com/adafruit/Adafruit_CircuitPython_HX8357/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\ndisplayio Driver for HX8357 Displays such as the 3.5-inch TFT FeatherWing and Breakout\n\n\nDependencies\n=============\nThis driver depends on:\n\n* `Adafruit CircuitPython <https://github.com/adafruit/circuitpython>`_\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\n.. code-block:: python\n\n    import board\n    import displayio\n    from adafruit_hx8357 import HX8357\n\n    spi = board.SPI()\n    tft_cs = board.D9\n    tft_dc = board.D10\n\n    displayio.release_displays()\n    display_bus = displayio.FourWire(spi, command=tft_dc, chip_select=tft_cs)\n\n    display = HX8357(display_bus, width=480, height=320)\n\n    # Make the display context\n    splash = displayio.Group()\n    display.show(splash)\n\n    color_bitmap = displayio.Bitmap(480, 320, 1)\n    color_palette = displayio.Palette(1)\n    color_palette[0] = 0xFF0000\n\n    bg_sprite = displayio.TileGrid(color_bitmap,\n                                   pixel_shader=color_palette,\n                                   x=0, y=0)\n    splash.append(bg_sprite)\n\n    while True:\n        pass\n\nDocumentation\n=============\n\nAPI documentation for this library can be found on `Read the Docs <https://docs.circuitpython.org/projects/hx8357/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_HX8357/blob/main/CODE_OF_CONDUCT.md>`_\nbefore contributing to help this project stay welcoming.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "displayio driver for hx8357 and ILI9340 TFT-LCD displays.",
    "version": "1.4.3",
    "project_urls": {
        "Homepage": "https://github.com/adafruit/Adafruit_CircuitPython_hx8357"
    },
    "split_keywords": [
        "adafruit",
        " blinka",
        " circuitpython",
        " micropython",
        " hx8357",
        " display",
        " tft",
        " lcd",
        " displayio"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f02a88cb388fa1307325c7d19f5a444eeb27ab3d099231138089211be52e007f",
                "md5": "c0f0eb7355518a272d7a6e2d354d7ef1",
                "sha256": "f7d47164aa4fa45838e93dc631abc826b54cb0916acc18a1949f33bcb198fdc5"
            },
            "downloads": -1,
            "filename": "adafruit_circuitpython_hx8357-1.4.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c0f0eb7355518a272d7a6e2d354d7ef1",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 4779,
            "upload_time": "2024-04-01T15:23:39",
            "upload_time_iso_8601": "2024-04-01T15:23:39.718978Z",
            "url": "https://files.pythonhosted.org/packages/f0/2a/88cb388fa1307325c7d19f5a444eeb27ab3d099231138089211be52e007f/adafruit_circuitpython_hx8357-1.4.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ebad3e69e5de3bc3078706ee3c9b696128e1faa5ef77b88c8641b95fb7746ec3",
                "md5": "6be2a499d468aa18c76b2ea1eff51d82",
                "sha256": "8ea49bd853d3354052fe78d96ad5d2c02211651264af59272149907d6fecd34e"
            },
            "downloads": -1,
            "filename": "adafruit-circuitpython-hx8357-1.4.3.tar.gz",
            "has_sig": false,
            "md5_digest": "6be2a499d468aa18c76b2ea1eff51d82",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 26261,
            "upload_time": "2024-04-01T15:23:40",
            "upload_time_iso_8601": "2024-04-01T15:23:40.847374Z",
            "url": "https://files.pythonhosted.org/packages/eb/ad/3e69e5de3bc3078706ee3c9b696128e1faa5ef77b88c8641b95fb7746ec3/adafruit-circuitpython-hx8357-1.4.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-01 15:23:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "adafruit",
    "github_project": "Adafruit_CircuitPython_hx8357",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "adafruit-circuitpython-hx8357"
}
        
Elapsed time: 0.21683s