inky


Nameinky JSON
Version 1.5.0 PyPI version JSON
download
home_pagehttp://www.pimoroni.com
SummaryInky pHAT Driver
upload_time2023-02-07 13:28:28
maintainer
docs_urlNone
authorPhilip Howard
requires_python
licenseMIT
keywords raspberry pi e-paper display driver
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Inky

[![Build Status](https://travis-ci.com/pimoroni/inky.svg?branch=master)](https://travis-ci.com/pimoroni/inky)
[![Coverage Status](https://coveralls.io/repos/github/pimoroni/inky/badge.svg?branch=master)](https://coveralls.io/github/pimoroni/inky?branch=master)
[![PyPi Package](https://img.shields.io/pypi/v/inky.svg)](https://pypi.python.org/pypi/inky)
[![Python Versions](https://img.shields.io/pypi/pyversions/inky.svg)](https://pypi.python.org/pypi/inky)

Python library for [Inky pHAT](https://shop.pimoroni.com/products/inky-phat), [Inky wHAT](https://shop.pimoroni.com/products/inky-what) and [Inky Impression](https://shop.pimoroni.com/?q=inky+impression) e-paper displays for Raspberry Pi.

## Inky pHAT

[Inky pHAT](https://shop.pimoroni.com/products/inky-phat) is a 250x122 pixel e-paper display, available in red/black/white, yellow/black/white and black/white. It's great for nametags and displaying very low frequency information such as a daily calendar or weather overview.


## Inky wHAT

[Inky wHAT](https://shop.pimoroni.com/products/inky-what) is a 400x300 pixel e-paper display available in red/black/white, yellow/black/white and black/white. It's got tons of resolution for detailed daily to-do lists, multi-day weather forecasts, bus timetables and more.

## Inky Impression

[Inky Impression](https://shop.pimoroni.com/?q=inky+impression) is our line of glorious 7 colour eInk displays, available in [4"](https://shop.pimoroni.com/products/inky-impression-4) (640 x 400 pixel) [5.7"](https://shop.pimoroni.com/products/inky-impression-5-7) (600 x 448 pixel) and [7.3"](https://shop.pimoroni.com/products/inky-impression-7-3) (800 x 480 pixel) flavours. They're packed with strong colours and perfect for displaying striking graphics or lots of data.

# Installation

First, make sure you have I2C and SPI enabled in `sudo raspi-config`.

The Python pip package is named inky, on the Raspberry Pi install with:

```
pip3 install inky[rpi,example-depends]
```

This will install Inky along with dependencies for the Raspberry Pi, plus fonts used by the examples.

If you want to simulate Inky on your desktop, use:

```
pip3 install inky
```

You may need to use `sudo pip3` or `sudo pip` depending on your environment and Python version.

# Usage

The library should be run with Python 3.

## Auto Setup

Inky can try to automatically identify your board (from the information stored on its EEPROM) and set up accordingly. This is the easiest way to work with recent Inky displays.

```python
from inky.auto import auto
display = auto()
```

You can then get the colour and resolution from the board:

```python
display.colour
display.resolution
```

## Manual Setup

If you have an older Inky without an EEPROM, you can specify the type manually. The Inky library contains modules for both the pHAT and wHAT, load the Inky pHAT one as follows:

```python
from inky import InkyPHAT
```

You'll then need to pick your colour, one of 'red', 'yellow' or 'black' and instantiate the class:

```python
display = InkyPHAT('red')
```

If you're using the wHAT you'll need to load the InkyWHAT class from the Inky library like so:

```python
from inky import InkyWHAT
display = InkyWHAT('red')
```

Once you've initialised Inky, there are only three methods you need to be concerned with:

## Set Image

Set a PIL image, numpy array or list to Inky's internal buffer. The image dimensions should match the dimensions of the pHAT or wHAT you're using.

```python
display.set_image(image)
```

You should use `PIL` to create an image. `PIL` provides an `ImageDraw` module which allow you to draw text, lines and shapes over your image. See: https://pillow.readthedocs.io/en/stable/reference/ImageDraw.html

## Set Border

Set the border colour of you pHAT or wHAT.

```python
display.set_border(colour)
```

`colour` should be one of `inky.RED`, `inky.YELLOW`, `inky.WHITE` or `inky.BLACK` with available colours depending on your display type.

## Update The Display

Once you've prepared and set your image, and chosen a border colour, you can update your e-ink display with:

```python
display.show()
```


# Migrating

If you're migrating code from the old `inkyphat` library you'll find that much of the drawing and image manipulation functions have been removed from Inky. These functions were always supplied by PIL, and the recommended approach is to use PIL to create and prepare your image before setting it to Inky with `set_image()`.

1.5.0
-----

* New: inky impression 7.3" support.
* BugFix: WIDTH / HEIGHT set on uc8159.

1.4.0
-----

* New: inky SSD1683 support for WHAT variant

1.3.2
-----

* BugFix: (ish) handle busy_wait failure cases for UC8159 (Inky Impression)

1.3.1
-----

* BugFix: unbreak UC8159

1.3.0
-----

* New: inky UC8159 support for 4" 640x400 display variant
* BugFix: fix set_image so it doesn't break set_pixel
* New: Added --simulate <board> to "auto()", so auto examples can simulate a chosen board

1.2.2
-----

* BugFix: Raise Impression/7Color/UC8159 busy wait timeout from 15s to 30s

1.2.1
-----

* BugFix: inky high-temp red fix
* Enhancement: SSD1608 (250x122) set_border support

1.2.0
-----

* New: inky impression set_border support
* BugFix: inky impression orange colour
* BugFix: inky impression invalid arg bug for Python 2
* New: inky impression simulator

1.1.1
-----

* Enhancement: drive UC81559 CS with GPIO to avoid conflict with Grow workaround
* Add 7-colour/UC8159 specifics to EEPROM
* BugFix: define UC8159 colour and size constants in class
* BugFix: fix auto to grab args properly, support UC8159 and fallback gracefully

1.1.0
-----

* New: Support for UC8159-based 7-colour 600x448 display
* Enhancement: auto now includes options for fallback
* Enhancement: EEPROM can now give text string for display variant

1.0.2
-----

* Enhancement: Always install Pi dependencies

1.0.1
-----

* Enhancement: Tweak setup.py extras for easier dependency install

1.0.0
-----

* New: Support for SSD1608-based displays
* New: Mock Inky pHAT and wHAT displays
* New: Automatic Inky detection and class constructor
* Enhancement: Support for alternate i2c_bus when reading eeprom
* Enhancement: Support for alternate spi_bus
* Enhancement: Support for alternate GPIO driver
* Enhancement: Replaced sys.exit calls with ImportError
* Enhancement: Improved docstrings

0.0.5
-----

* Enhancement: Added support for red/b/w high-temp Inky wHAT

0.0.4
-----

* BugFix: Reverted normal red LUTs to correct values

0.0.3
-----

* Enhancement: Added support for display variant detection
* Enhancement: Added DocStrings
* BugFix: Fixed set_border for all colours

0.0.2
-----

* BugFix: Yellow Inky pHAT now yellow instead of brown/black
* Enhancement: Performance tweak for set_image

0.0.1
-----

* Initial Release



            

Raw data

            {
    "_id": null,
    "home_page": "http://www.pimoroni.com",
    "name": "inky",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "Raspberry Pi e-paper display driver",
    "author": "Philip Howard",
    "author_email": "phil@pimoroni.com",
    "download_url": "https://files.pythonhosted.org/packages/69/65/1ded0b0ac9c1c5c5ebd6c1e4e492ff37ccf8eea53a6ec44cd608516dbd08/inky-1.5.0.tar.gz",
    "platform": null,
    "description": "# Inky\n\n[![Build Status](https://travis-ci.com/pimoroni/inky.svg?branch=master)](https://travis-ci.com/pimoroni/inky)\n[![Coverage Status](https://coveralls.io/repos/github/pimoroni/inky/badge.svg?branch=master)](https://coveralls.io/github/pimoroni/inky?branch=master)\n[![PyPi Package](https://img.shields.io/pypi/v/inky.svg)](https://pypi.python.org/pypi/inky)\n[![Python Versions](https://img.shields.io/pypi/pyversions/inky.svg)](https://pypi.python.org/pypi/inky)\n\nPython library for [Inky pHAT](https://shop.pimoroni.com/products/inky-phat), [Inky wHAT](https://shop.pimoroni.com/products/inky-what) and [Inky Impression](https://shop.pimoroni.com/?q=inky+impression) e-paper displays for Raspberry Pi.\n\n## Inky pHAT\n\n[Inky pHAT](https://shop.pimoroni.com/products/inky-phat) is a 250x122 pixel e-paper display, available in red/black/white, yellow/black/white and black/white. It's great for nametags and displaying very low frequency information such as a daily calendar or weather overview.\n\n\n## Inky wHAT\n\n[Inky wHAT](https://shop.pimoroni.com/products/inky-what) is a 400x300 pixel e-paper display available in red/black/white, yellow/black/white and black/white. It's got tons of resolution for detailed daily to-do lists, multi-day weather forecasts, bus timetables and more.\n\n## Inky Impression\n\n[Inky Impression](https://shop.pimoroni.com/?q=inky+impression) is our line of glorious 7 colour eInk displays, available in [4\"](https://shop.pimoroni.com/products/inky-impression-4) (640 x 400 pixel) [5.7\"](https://shop.pimoroni.com/products/inky-impression-5-7) (600 x 448 pixel) and [7.3\"](https://shop.pimoroni.com/products/inky-impression-7-3) (800 x 480 pixel) flavours. They're packed with strong colours and perfect for displaying striking graphics or lots of data.\n\n# Installation\n\nFirst, make sure you have I2C and SPI enabled in `sudo raspi-config`.\n\nThe Python pip package is named inky, on the Raspberry Pi install with:\n\n```\npip3 install inky[rpi,example-depends]\n```\n\nThis will install Inky along with dependencies for the Raspberry Pi, plus fonts used by the examples.\n\nIf you want to simulate Inky on your desktop, use:\n\n```\npip3 install inky\n```\n\nYou may need to use `sudo pip3` or `sudo pip` depending on your environment and Python version.\n\n# Usage\n\nThe library should be run with Python 3.\n\n## Auto Setup\n\nInky can try to automatically identify your board (from the information stored on its EEPROM) and set up accordingly. This is the easiest way to work with recent Inky displays.\n\n```python\nfrom inky.auto import auto\ndisplay = auto()\n```\n\nYou can then get the colour and resolution from the board:\n\n```python\ndisplay.colour\ndisplay.resolution\n```\n\n## Manual Setup\n\nIf you have an older Inky without an EEPROM, you can specify the type manually. The Inky library contains modules for both the pHAT and wHAT, load the Inky pHAT one as follows:\n\n```python\nfrom inky import InkyPHAT\n```\n\nYou'll then need to pick your colour, one of 'red', 'yellow' or 'black' and instantiate the class:\n\n```python\ndisplay = InkyPHAT('red')\n```\n\nIf you're using the wHAT you'll need to load the InkyWHAT class from the Inky library like so:\n\n```python\nfrom inky import InkyWHAT\ndisplay = InkyWHAT('red')\n```\n\nOnce you've initialised Inky, there are only three methods you need to be concerned with:\n\n## Set Image\n\nSet a PIL image, numpy array or list to Inky's internal buffer. The image dimensions should match the dimensions of the pHAT or wHAT you're using.\n\n```python\ndisplay.set_image(image)\n```\n\nYou should use `PIL` to create an image. `PIL` provides an `ImageDraw` module which allow you to draw text, lines and shapes over your image. See: https://pillow.readthedocs.io/en/stable/reference/ImageDraw.html\n\n## Set Border\n\nSet the border colour of you pHAT or wHAT.\n\n```python\ndisplay.set_border(colour)\n```\n\n`colour` should be one of `inky.RED`, `inky.YELLOW`, `inky.WHITE` or `inky.BLACK` with available colours depending on your display type.\n\n## Update The Display\n\nOnce you've prepared and set your image, and chosen a border colour, you can update your e-ink display with:\n\n```python\ndisplay.show()\n```\n\n\n# Migrating\n\nIf you're migrating code from the old `inkyphat` library you'll find that much of the drawing and image manipulation functions have been removed from Inky. These functions were always supplied by PIL, and the recommended approach is to use PIL to create and prepare your image before setting it to Inky with `set_image()`.\n\n1.5.0\n-----\n\n* New: inky impression 7.3\" support.\n* BugFix: WIDTH / HEIGHT set on uc8159.\n\n1.4.0\n-----\n\n* New: inky SSD1683 support for WHAT variant\n\n1.3.2\n-----\n\n* BugFix: (ish) handle busy_wait failure cases for UC8159 (Inky Impression)\n\n1.3.1\n-----\n\n* BugFix: unbreak UC8159\n\n1.3.0\n-----\n\n* New: inky UC8159 support for 4\" 640x400 display variant\n* BugFix: fix set_image so it doesn't break set_pixel\n* New: Added --simulate <board> to \"auto()\", so auto examples can simulate a chosen board\n\n1.2.2\n-----\n\n* BugFix: Raise Impression/7Color/UC8159 busy wait timeout from 15s to 30s\n\n1.2.1\n-----\n\n* BugFix: inky high-temp red fix\n* Enhancement: SSD1608 (250x122) set_border support\n\n1.2.0\n-----\n\n* New: inky impression set_border support\n* BugFix: inky impression orange colour\n* BugFix: inky impression invalid arg bug for Python 2\n* New: inky impression simulator\n\n1.1.1\n-----\n\n* Enhancement: drive UC81559 CS with GPIO to avoid conflict with Grow workaround\n* Add 7-colour/UC8159 specifics to EEPROM\n* BugFix: define UC8159 colour and size constants in class\n* BugFix: fix auto to grab args properly, support UC8159 and fallback gracefully\n\n1.1.0\n-----\n\n* New: Support for UC8159-based 7-colour 600x448 display\n* Enhancement: auto now includes options for fallback\n* Enhancement: EEPROM can now give text string for display variant\n\n1.0.2\n-----\n\n* Enhancement: Always install Pi dependencies\n\n1.0.1\n-----\n\n* Enhancement: Tweak setup.py extras for easier dependency install\n\n1.0.0\n-----\n\n* New: Support for SSD1608-based displays\n* New: Mock Inky pHAT and wHAT displays\n* New: Automatic Inky detection and class constructor\n* Enhancement: Support for alternate i2c_bus when reading eeprom\n* Enhancement: Support for alternate spi_bus\n* Enhancement: Support for alternate GPIO driver\n* Enhancement: Replaced sys.exit calls with ImportError\n* Enhancement: Improved docstrings\n\n0.0.5\n-----\n\n* Enhancement: Added support for red/b/w high-temp Inky wHAT\n\n0.0.4\n-----\n\n* BugFix: Reverted normal red LUTs to correct values\n\n0.0.3\n-----\n\n* Enhancement: Added support for display variant detection\n* Enhancement: Added DocStrings\n* BugFix: Fixed set_border for all colours\n\n0.0.2\n-----\n\n* BugFix: Yellow Inky pHAT now yellow instead of brown/black\n* Enhancement: Performance tweak for set_image\n\n0.0.1\n-----\n\n* Initial Release\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Inky pHAT Driver",
    "version": "1.5.0",
    "split_keywords": [
        "raspberry",
        "pi",
        "e-paper",
        "display",
        "driver"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9bf28f1e4304d566b7e78f3dbff195ae0855d1a991a28b7a66f63028bb31ef6d",
                "md5": "5c99597fcf812a60e9e83b478cc7447c",
                "sha256": "5d74c35ee4467186e4ade7ca9eb98ecd5b8c81feea8e7df9a14a8d682e988f49"
            },
            "downloads": -1,
            "filename": "inky-1.5.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5c99597fcf812a60e9e83b478cc7447c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 32725,
            "upload_time": "2023-02-07T13:28:26",
            "upload_time_iso_8601": "2023-02-07T13:28:26.781189Z",
            "url": "https://files.pythonhosted.org/packages/9b/f2/8f1e4304d566b7e78f3dbff195ae0855d1a991a28b7a66f63028bb31ef6d/inky-1.5.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69651ded0b0ac9c1c5c5ebd6c1e4e492ff37ccf8eea53a6ec44cd608516dbd08",
                "md5": "6d03d6fb7387a4e3cd16937c15dd7cfe",
                "sha256": "312d872985b0df038ebddb03653f5120d6902ceb9ce195a2043cf57feaf26c92"
            },
            "downloads": -1,
            "filename": "inky-1.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "6d03d6fb7387a4e3cd16937c15dd7cfe",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 24509,
            "upload_time": "2023-02-07T13:28:28",
            "upload_time_iso_8601": "2023-02-07T13:28:28.865649Z",
            "url": "https://files.pythonhosted.org/packages/69/65/1ded0b0ac9c1c5c5ebd6c1e4e492ff37ccf8eea53a6ec44cd608516dbd08/inky-1.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-02-07 13:28:28",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "inky"
}
        
Elapsed time: 0.03659s