luma.lcd


Nameluma.lcd JSON
Version 2.11.0 PyPI version JSON
download
home_pagehttps://github.com/rm-hull/luma.lcd
SummaryA library to drive PCD8544, HD44780, HT1621, ST7735, ST7789, ST7567, UC1701X and ILI9341-based LCD displays
upload_time2023-07-02 12:47:15
maintainer
docs_urlNone
authorRichard Hull
requires_python<4,>=3.7
licenseMIT
keywords raspberry pi rpi lcd display screen rgb monochrome greyscale color nokia 5110 pcd8544 st7735 st7789 uc1701x ht1621 ili9341 hd44780 spi i2c parallel bitbang6800 pcf8574
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            `luma.core <https://github.com/rm-hull/luma.core>`__ **|**
`luma.docs <https://github.com/rm-hull/luma.docs>`__ **|**
`luma.emulator <https://github.com/rm-hull/luma.emulator>`__ **|**
`luma.examples <https://github.com/rm-hull/luma.examples>`__ **|**
luma.lcd **|**
`luma.led_matrix <https://github.com/rm-hull/luma.led_matrix>`__ **|**
`luma.oled <https://github.com/rm-hull/luma.oled>`__

luma.lcd
========
**HD44780, PCD8544, ST7735, ST7789, ST7567, HT1621, UC1701X, ILI9341 Display Drivers**

.. image:: https://github.com/rm-hull/luma.lcd/workflows/luma.lcd/badge.svg?branch=master
   :target: https://github.com/rm-hull/luma.lcd/actions?workflow=luma.lcd

.. image:: https://coveralls.io/repos/github/rm-hull/luma.lcd/badge.svg?branch=master
   :target: https://coveralls.io/github/rm-hull/luma.lcd?branch=master

.. image:: https://readthedocs.org/projects/luma-lcd/badge/?version=latest
   :target: http://luma-lcd.readthedocs.io/en/latest/?badge=latest
   :alt: Documentation Status

.. image:: https://img.shields.io/pypi/pyversions/luma.lcd.svg
   :target: https://pypi.python.org/pypi/luma.lcd

.. image:: https://img.shields.io/pypi/v/luma.lcd.svg
   :target: https://pypi.python.org/pypi/luma.lcd

.. image:: https://img.shields.io/pypi/dm/luma.lcd
   :target: https://pypi.python.org/project/luma.lcd

luma.lcd provides a Python 3 interface to small LCD displays connected to
Raspberry Pi and other Linux-based single-board computers (SBC).  It provides a
Pillow-compatible drawing canvas, and other functionality to support:

* scrolling/panning capability,
* terminal-style printing,
* state management,
* color/greyscale (where supported),
* dithering to monochrome

It currently supports devices using the HD44780, PCD8544, ST7735, HT1621,
and UC1701X controllers.

All modules can be picked up on ebay with a breakout board for a few pounds.

.. image:: https://raw.github.com/rm-hull/luma.lcd/master/doc/images/hd44780_20x4.jpg

.. image:: https://raw.github.com/rm-hull/luma.lcd/master/doc/images/pcd8544.png

.. image:: https://raw.github.com/rm-hull/luma.lcd/master/doc/images/st7735.jpg

.. image:: https://raw.github.com/rm-hull/luma.lcd/master/doc/images/ht1621.jpg

.. image:: https://raw.github.com/rm-hull/luma.lcd/master/doc/images/uc1701x.png

.. image:: https://raw.github.com/rm-hull/luma.lcd/master/doc/images/ili9341.jpg

Documentation
-------------
Full documentation with installation instructions and examples can be found on
https://luma-lcd.readthedocs.io.

Upgrade
-------
Version 2.0.0 was released on 2 June 2019: this came with the removal of the
``luma.lcd.aux.backlight`` class. The equivalent functionality has now
been subsumed into the device classes that have a backlight capability.

License
-------
The MIT License (MIT)

Copyright (c) 2013-2022 Richard Hull & Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Contributing
------------

Pull requests (code changes / documentation / typos / feature requests / setup)
are gladly accepted. If you are intending to introduce some large-scale
changes, please get in touch first to make sure we're on the same page: try to
include a docstring for any new method or class, and keep method bodies small,
readable and PEP8-compliant. Add tests and strive to keep the code coverage
levels high.

GitHub
^^^^^^
The source code is available to clone at: https://github.com/rm-hull/luma.lcd.git

Contributors
^^^^^^^^^^^^
* Thijs Triemstra (@thijstriemstra)
* Dougie Lawson (@dougielawson)
* WsMithril (@WsMithril)
* Peter Martin (@pe7er)
* Saumyakanta Sahoo (@somu1795)
* Philip Howard (@Gadgetoid)
* Ricardo Amendoeira (@ric2b)
* Kevin Stone (@kevinastone)
* Dhrone (@dhrone)
* Matthew Lovell (@mattblovell)
* Maciej Sokolowski (@matemaciek)
* Frederic Meeuwissen (@Frederic98)
* Ed Wightman (@wightmanjr)

ChangeLog
---------

+------------+---------------------------------------------------------------------+------------+
| Version    | Description                                                         | Date       |
+============+=====================================================================+============+
| **2.11.0** | * Add ILI9488 Colour LCD display driver                             | 2023/07/02 |
+------------+---------------------------------------------------------------------+------------+
| **2.10.0** | * Drop support for Python 3.6                                       | 2022/10/19 |
|            | * Add width and height parameters to ST7789 device                  |            |
|            | * Fix timing issue in ili9341                                       |            |
+------------+---------------------------------------------------------------------+------------+
| **2.9.0**  | * Add ST7789 Colour LCD display driver                              | 2021/03/14 |
+------------+---------------------------------------------------------------------+------------+
| **2.8.0**  | * Add ILI9486 Colour LCD display driver                             | 2020/12/14 |
+------------+---------------------------------------------------------------------+------------+
| **2.7.1**  | * Fix mutable default parameter bug when using multiple displays    | 2020/11/15 |
+------------+---------------------------------------------------------------------+------------+
| **2.7.0**  | * Improved performance for ST7739 and ILI9341 displays              | 2020/11/04 |
+------------+---------------------------------------------------------------------+------------+
| **2.6.0**  | * Drop support for Python 3.5, only 3.6 or newer is supported now   | 2020/10/25 |
|            | * Pin luma.core to 1.x.y line only, in anticipation of performance  |            |
|            |   improvements in upcoming major release                            |            |
+------------+---------------------------------------------------------------------+------------+
| **2.5.0**  | * Add HD44780 LCD display driver                                    | 2020/09/24 |
+------------+---------------------------------------------------------------------+------------+
| **2.4.0**  | * Drop support for Python 2.7, only 3.5 or newer is supported now   | 2020/07/04 |
+------------+---------------------------------------------------------------------+------------+
| **2.3.0**  | * Add PWM backlight control                                         | 2020/01/08 |
+------------+---------------------------------------------------------------------+------------+
| **2.2.0**  | * Add ILI9341 Colour LCD display driver                             | 2019/11/25 |
+------------+---------------------------------------------------------------------+------------+
| **2.1.0**  | * Rework namespace handling for luma sub-projects                   | 2019/06/16 |
+------------+---------------------------------------------------------------------+------------+
| **2.0.0**  | * **BREAKING CHANGES:** Removal of ``luma.lcd.aux.backlight`` class | 2019/06/02 |
|            | * Device classes now incorporate backlight capability               |            |
+------------+---------------------------------------------------------------------+------------+
| **1.1.1**  | * Add support for 160x80 display size for ST7735                    | 2019/03/30 |
|            | * Minor documentation updates                                       |            |
+------------+---------------------------------------------------------------------+------------+
| **1.1.0**  | * Add ST7567 Monochrome LCD display driver (courtesy of @Gadgetoid) | 2018/09/07 |
|            | * Change HT1621 tests                                               |            |
|            | * Update dependencies                                               |            |
+------------+---------------------------------------------------------------------+------------+
| **1.0.3**  | * Changed version number to inside ``luma/lcd/__init__.py``         | 2017/11/23 |
+------------+---------------------------------------------------------------------+------------+
| **1.0.2**  | * Documentation and dependencies updates                            | 2017/10/30 |
+------------+---------------------------------------------------------------------+------------+
| **1.0.1**  | * Update dependencies                                               | 2017/09/14 |
+------------+---------------------------------------------------------------------+------------+
| **1.0.0**  | * Stable version                                                    | 2017/09/09 |
|            | * Remove deprecated methods                                         |            |
+------------+---------------------------------------------------------------------+------------+
| **0.5.0**  | * Add UC1701X Monochrome LCD display driver                         | 2017/06/11 |
+------------+---------------------------------------------------------------------+------------+
| **0.4.1**  | * luma.core 0.9.0 or newer is required now                          | 2017/04/22 |
+------------+---------------------------------------------------------------------+------------+
| **0.4.0**  | * Add HT1621 seven-segment driver                                   | 2017/04/22 |
+------------+---------------------------------------------------------------------+------------+
| **0.3.3**  | * Add deprecation warning for bcm_LIGHT                             | 2017/03/14 |
+------------+---------------------------------------------------------------------+------------+
| **0.3.4**  | * Add support for 128x128 display size for ST7735                   | 2017/04/17 |
|            | * Implement horizontal and vertical offsets (for ST7735)            |            |
|            | * Make backlight configurable as active high or active low          |            |
+------------+---------------------------------------------------------------------+------------+
| **0.3.3**  | * Add deprecation warning for bcm_LIGHT                             | 2017/03/14 |
+------------+---------------------------------------------------------------------+------------+
| **0.3.2**  | * Raise ``error.UnsupportedPlatform`` if RPi.GPIO is not available  | 2017/03/08 |
+------------+---------------------------------------------------------------------+------------+
| **0.3.0**  | * Add ST7735 Color TFT LCD display driver                           | 2017/03/05 |
|            | * Removed width and height parameters from device constructors      |            |
|            | * **BREAKING CHANGES:** Move backlight class to different package   |            |
+------------+---------------------------------------------------------------------+------------+
| **0.2.3**  | * Allow PCD8544 driver constructor to accept any args               | 2017/03/02 |
+------------+---------------------------------------------------------------------+------------+
| **0.2.2**  | * Restrict exported Python symbols from ``luma.lcd.device``         | 2017/03/02 |
+------------+---------------------------------------------------------------------+------------+
| **0.2.1**  | * Bugfix: Backlight didn't switch off properly                      | 2017/01/23 |
|            | * Add tests                                                         |            |
+------------+---------------------------------------------------------------------+------------+
| **0.2.0**  | * **BREAKING CHANGES:** Package rename to ``luma.lcd``              | 2017/01/13 |
+------------+---------------------------------------------------------------------+------------+
| **0.0.1**  | * Bit-bang version using wiringPi                                   | 2013/01/28 |
+------------+---------------------------------------------------------------------+------------+

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/rm-hull/luma.lcd",
    "name": "luma.lcd",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "<4,>=3.7",
    "maintainer_email": "",
    "keywords": "raspberry pi,rpi,lcd,display,screen,rgb,monochrome,greyscale,color,nokia 5110,pcd8544,st7735,st7789,uc1701x,ht1621,ili9341,hd44780,spi,i2c,parallel,bitbang6800,pcf8574",
    "author": "Richard Hull",
    "author_email": "richard.hull@destructuring-bind.org",
    "download_url": "https://files.pythonhosted.org/packages/b8/45/fd72b25d234d1e315e34b1df19dc5e31f93a15b22be91c2195a578dc39aa/luma.lcd-2.11.0.tar.gz",
    "platform": null,
    "description": "`luma.core <https://github.com/rm-hull/luma.core>`__ **|**\n`luma.docs <https://github.com/rm-hull/luma.docs>`__ **|**\n`luma.emulator <https://github.com/rm-hull/luma.emulator>`__ **|**\n`luma.examples <https://github.com/rm-hull/luma.examples>`__ **|**\nluma.lcd **|**\n`luma.led_matrix <https://github.com/rm-hull/luma.led_matrix>`__ **|**\n`luma.oled <https://github.com/rm-hull/luma.oled>`__\n\nluma.lcd\n========\n**HD44780, PCD8544, ST7735, ST7789, ST7567, HT1621, UC1701X, ILI9341 Display Drivers**\n\n.. image:: https://github.com/rm-hull/luma.lcd/workflows/luma.lcd/badge.svg?branch=master\n   :target: https://github.com/rm-hull/luma.lcd/actions?workflow=luma.lcd\n\n.. image:: https://coveralls.io/repos/github/rm-hull/luma.lcd/badge.svg?branch=master\n   :target: https://coveralls.io/github/rm-hull/luma.lcd?branch=master\n\n.. image:: https://readthedocs.org/projects/luma-lcd/badge/?version=latest\n   :target: http://luma-lcd.readthedocs.io/en/latest/?badge=latest\n   :alt: Documentation Status\n\n.. image:: https://img.shields.io/pypi/pyversions/luma.lcd.svg\n   :target: https://pypi.python.org/pypi/luma.lcd\n\n.. image:: https://img.shields.io/pypi/v/luma.lcd.svg\n   :target: https://pypi.python.org/pypi/luma.lcd\n\n.. image:: https://img.shields.io/pypi/dm/luma.lcd\n   :target: https://pypi.python.org/project/luma.lcd\n\nluma.lcd provides a Python 3 interface to small LCD displays connected to\nRaspberry Pi and other Linux-based single-board computers (SBC).  It provides a\nPillow-compatible drawing canvas, and other functionality to support:\n\n* scrolling/panning capability,\n* terminal-style printing,\n* state management,\n* color/greyscale (where supported),\n* dithering to monochrome\n\nIt currently supports devices using the HD44780, PCD8544, ST7735, HT1621,\nand UC1701X controllers.\n\nAll modules can be picked up on ebay with a breakout board for a few pounds.\n\n.. image:: https://raw.github.com/rm-hull/luma.lcd/master/doc/images/hd44780_20x4.jpg\n\n.. image:: https://raw.github.com/rm-hull/luma.lcd/master/doc/images/pcd8544.png\n\n.. image:: https://raw.github.com/rm-hull/luma.lcd/master/doc/images/st7735.jpg\n\n.. image:: https://raw.github.com/rm-hull/luma.lcd/master/doc/images/ht1621.jpg\n\n.. image:: https://raw.github.com/rm-hull/luma.lcd/master/doc/images/uc1701x.png\n\n.. image:: https://raw.github.com/rm-hull/luma.lcd/master/doc/images/ili9341.jpg\n\nDocumentation\n-------------\nFull documentation with installation instructions and examples can be found on\nhttps://luma-lcd.readthedocs.io.\n\nUpgrade\n-------\nVersion 2.0.0 was released on 2 June 2019: this came with the removal of the\n``luma.lcd.aux.backlight`` class. The equivalent functionality has now\nbeen subsumed into the device classes that have a backlight capability.\n\nLicense\n-------\nThe MIT License (MIT)\n\nCopyright (c) 2013-2022 Richard Hull & Contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\nContributing\n------------\n\nPull requests (code changes / documentation / typos / feature requests / setup)\nare gladly accepted. If you are intending to introduce some large-scale\nchanges, please get in touch first to make sure we're on the same page: try to\ninclude a docstring for any new method or class, and keep method bodies small,\nreadable and PEP8-compliant. Add tests and strive to keep the code coverage\nlevels high.\n\nGitHub\n^^^^^^\nThe source code is available to clone at: https://github.com/rm-hull/luma.lcd.git\n\nContributors\n^^^^^^^^^^^^\n* Thijs Triemstra (@thijstriemstra)\n* Dougie Lawson (@dougielawson)\n* WsMithril (@WsMithril)\n* Peter Martin (@pe7er)\n* Saumyakanta Sahoo (@somu1795)\n* Philip Howard (@Gadgetoid)\n* Ricardo Amendoeira (@ric2b)\n* Kevin Stone (@kevinastone)\n* Dhrone (@dhrone)\n* Matthew Lovell (@mattblovell)\n* Maciej Sokolowski (@matemaciek)\n* Frederic Meeuwissen (@Frederic98)\n* Ed Wightman (@wightmanjr)\n\nChangeLog\n---------\n\n+------------+---------------------------------------------------------------------+------------+\n| Version    | Description                                                         | Date       |\n+============+=====================================================================+============+\n| **2.11.0** | * Add ILI9488 Colour LCD display driver                             | 2023/07/02 |\n+------------+---------------------------------------------------------------------+------------+\n| **2.10.0** | * Drop support for Python 3.6                                       | 2022/10/19 |\n|            | * Add width and height parameters to ST7789 device                  |            |\n|            | * Fix timing issue in ili9341                                       |            |\n+------------+---------------------------------------------------------------------+------------+\n| **2.9.0**  | * Add ST7789 Colour LCD display driver                              | 2021/03/14 |\n+------------+---------------------------------------------------------------------+------------+\n| **2.8.0**  | * Add ILI9486 Colour LCD display driver                             | 2020/12/14 |\n+------------+---------------------------------------------------------------------+------------+\n| **2.7.1**  | * Fix mutable default parameter bug when using multiple displays    | 2020/11/15 |\n+------------+---------------------------------------------------------------------+------------+\n| **2.7.0**  | * Improved performance for ST7739 and ILI9341 displays              | 2020/11/04 |\n+------------+---------------------------------------------------------------------+------------+\n| **2.6.0**  | * Drop support for Python 3.5, only 3.6 or newer is supported now   | 2020/10/25 |\n|            | * Pin luma.core to 1.x.y line only, in anticipation of performance  |            |\n|            |   improvements in upcoming major release                            |            |\n+------------+---------------------------------------------------------------------+------------+\n| **2.5.0**  | * Add HD44780 LCD display driver                                    | 2020/09/24 |\n+------------+---------------------------------------------------------------------+------------+\n| **2.4.0**  | * Drop support for Python 2.7, only 3.5 or newer is supported now   | 2020/07/04 |\n+------------+---------------------------------------------------------------------+------------+\n| **2.3.0**  | * Add PWM backlight control                                         | 2020/01/08 |\n+------------+---------------------------------------------------------------------+------------+\n| **2.2.0**  | * Add ILI9341 Colour LCD display driver                             | 2019/11/25 |\n+------------+---------------------------------------------------------------------+------------+\n| **2.1.0**  | * Rework namespace handling for luma sub-projects                   | 2019/06/16 |\n+------------+---------------------------------------------------------------------+------------+\n| **2.0.0**  | * **BREAKING CHANGES:** Removal of ``luma.lcd.aux.backlight`` class | 2019/06/02 |\n|            | * Device classes now incorporate backlight capability               |            |\n+------------+---------------------------------------------------------------------+------------+\n| **1.1.1**  | * Add support for 160x80 display size for ST7735                    | 2019/03/30 |\n|            | * Minor documentation updates                                       |            |\n+------------+---------------------------------------------------------------------+------------+\n| **1.1.0**  | * Add ST7567 Monochrome LCD display driver (courtesy of @Gadgetoid) | 2018/09/07 |\n|            | * Change HT1621 tests                                               |            |\n|            | * Update dependencies                                               |            |\n+------------+---------------------------------------------------------------------+------------+\n| **1.0.3**  | * Changed version number to inside ``luma/lcd/__init__.py``         | 2017/11/23 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.0.2**  | * Documentation and dependencies updates                            | 2017/10/30 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.0.1**  | * Update dependencies                                               | 2017/09/14 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.0.0**  | * Stable version                                                    | 2017/09/09 |\n|            | * Remove deprecated methods                                         |            |\n+------------+---------------------------------------------------------------------+------------+\n| **0.5.0**  | * Add UC1701X Monochrome LCD display driver                         | 2017/06/11 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.4.1**  | * luma.core 0.9.0 or newer is required now                          | 2017/04/22 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.4.0**  | * Add HT1621 seven-segment driver                                   | 2017/04/22 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.3.3**  | * Add deprecation warning for bcm_LIGHT                             | 2017/03/14 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.3.4**  | * Add support for 128x128 display size for ST7735                   | 2017/04/17 |\n|            | * Implement horizontal and vertical offsets (for ST7735)            |            |\n|            | * Make backlight configurable as active high or active low          |            |\n+------------+---------------------------------------------------------------------+------------+\n| **0.3.3**  | * Add deprecation warning for bcm_LIGHT                             | 2017/03/14 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.3.2**  | * Raise ``error.UnsupportedPlatform`` if RPi.GPIO is not available  | 2017/03/08 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.3.0**  | * Add ST7735 Color TFT LCD display driver                           | 2017/03/05 |\n|            | * Removed width and height parameters from device constructors      |            |\n|            | * **BREAKING CHANGES:** Move backlight class to different package   |            |\n+------------+---------------------------------------------------------------------+------------+\n| **0.2.3**  | * Allow PCD8544 driver constructor to accept any args               | 2017/03/02 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.2.2**  | * Restrict exported Python symbols from ``luma.lcd.device``         | 2017/03/02 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.2.1**  | * Bugfix: Backlight didn't switch off properly                      | 2017/01/23 |\n|            | * Add tests                                                         |            |\n+------------+---------------------------------------------------------------------+------------+\n| **0.2.0**  | * **BREAKING CHANGES:** Package rename to ``luma.lcd``              | 2017/01/13 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.0.1**  | * Bit-bang version using wiringPi                                   | 2013/01/28 |\n+------------+---------------------------------------------------------------------+------------+\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A library to drive PCD8544, HD44780, HT1621, ST7735, ST7789, ST7567, UC1701X and ILI9341-based LCD displays",
    "version": "2.11.0",
    "project_urls": {
        "Homepage": "https://github.com/rm-hull/luma.lcd"
    },
    "split_keywords": [
        "raspberry pi",
        "rpi",
        "lcd",
        "display",
        "screen",
        "rgb",
        "monochrome",
        "greyscale",
        "color",
        "nokia 5110",
        "pcd8544",
        "st7735",
        "st7789",
        "uc1701x",
        "ht1621",
        "ili9341",
        "hd44780",
        "spi",
        "i2c",
        "parallel",
        "bitbang6800",
        "pcf8574"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4d43fd1880d9a1e1c6fa316bea17613fbccdbabd33accf216ad008ccc2eb01f",
                "md5": "1726cf030cf8269d68fd09379766da19",
                "sha256": "ecfdde2e86f9ce8820dec254f2972ed4943e08f7101d11bf3117860dc792a5a4"
            },
            "downloads": -1,
            "filename": "luma.lcd-2.11.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1726cf030cf8269d68fd09379766da19",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": "<4,>=3.7",
            "size": 25886,
            "upload_time": "2023-07-02T12:47:12",
            "upload_time_iso_8601": "2023-07-02T12:47:12.817242Z",
            "url": "https://files.pythonhosted.org/packages/e4/d4/3fd1880d9a1e1c6fa316bea17613fbccdbabd33accf216ad008ccc2eb01f/luma.lcd-2.11.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b845fd72b25d234d1e315e34b1df19dc5e31f93a15b22be91c2195a578dc39aa",
                "md5": "f958b06e4b82dbd7a348834603e78d27",
                "sha256": "d46044e96fd39943ebe48a61e753371571be1497a4bea96b72e3a9c732fbeee4"
            },
            "downloads": -1,
            "filename": "luma.lcd-2.11.0.tar.gz",
            "has_sig": false,
            "md5_digest": "f958b06e4b82dbd7a348834603e78d27",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.7",
            "size": 25322348,
            "upload_time": "2023-07-02T12:47:15",
            "upload_time_iso_8601": "2023-07-02T12:47:15.858778Z",
            "url": "https://files.pythonhosted.org/packages/b8/45/fd72b25d234d1e315e34b1df19dc5e31f93a15b22be91c2195a578dc39aa/luma.lcd-2.11.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-02 12:47:15",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "rm-hull",
    "github_project": "luma.lcd",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "tox": true,
    "lcname": "luma.lcd"
}
        
Elapsed time: 0.08882s