Metadata-Version: 1.1
Name: luma.lcd
Version: 0.3.2
Summary: A small library to drive PCD8544 and ST7735 LCDs
Home-page: https://github.com/rm-hull/luma.lcd
Author: Richard Hull
Author-email: richard.hull@destructuring-bind.org
License: MIT
Download-URL: https://github.com/rm-hull/luma.lcd/tarball/0.3.2
Description: `luma.core <https://github.com/rm-hull/luma.core>`__ **|** 
        `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
        ========
        **PCD8544, ST7735 Display Drivers**
        
        .. image:: https://travis-ci.org/rm-hull/luma.lcd.svg?branch=master
           :target: https://travis-ci.org/rm-hull/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/maintenance/yes/2017.svg?maxAge=2592000
        
        Python library interfacing LCD displays with the PCD8544 or ST7735 driver using
        SPI on the Raspberry Pi and other linux-based single-board computers - 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
        
        Both types of 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/pcd8544.png
        
        .. image:: https://raw.github.com/rm-hull/luma.lcd/master/doc/images/st7735.jpg
        
        Documentation
        -------------
        Full documentation with installation instructions and examples can be found on
        https://luma-lcd.readthedocs.io.
        
        License
        -------
        The MIT License (MIT)
        
        Copyright (c) 2013-17 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)
        
        
        ChangeLog
        ---------
        
        +------------+---------------------------------------------------------------------+------------+
        | Version    | Description                                                         | Date       |
        +============+=====================================================================+============+
        | **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 |
        +------------+---------------------------------------------------------------------+------------+
        
Keywords: raspberry pi rpi lcd nokia 5110 display screen pcd8544 st7735 spi 84x48 160x128
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Developers
Classifier: Topic :: Education
Classifier: Topic :: System :: Hardware
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
