High level ePaper display utilty
Project description
Context
This tool is showcased in the project IotaWorkshop
Summary
This is a high level e-paper libaray. It supports QR code displays and allows easy lines of text writing along with right text align. Ideally if used this libaray should be imported to use the helpful class EPD
.
Note This works for all waveshare screens when you import it. Simply change the line from,
from waveshare_epd import epd1in54_V2
To whatever screen you have. For instance the 5.83 inch BW screen
from waveshare_epd import epd5in83
Or the color version (bc)
from waveshare_epd import epd5in8bc
Installation
This project depends on Pillow
but there are a variety of ways of installing it so I did not mark it as a dependency in the pypi package, you can install it using,
pip install pillow
Simply install this package from the pypi repo
pip install piepd
Command Line Interface
There are a few example displays that can be run through the cli,
epd occipied #Displays text saying the tools is occupied
epd --help #To see altenative displays
Implementation Example
from epd import EPD
epd = EPD()
epd.setFontSize(21)
epd.drawText("Hello world",draw=False) #Draws this text on the screen
epd.drawText("Left",draw=False) #Does not display yet until draw=True
#The following line will right align the text and put it on the previous line
epd.drawText("Right",right=True,overlap=True,draw=True)
#Once you are completly done using the dislplay run
epd.close()
Wiring
Board pin name | Board pin | RPi pin name |
---|---|---|
VCC | 1 | 3v3 |
GND | 6 | GND |
DIN | 19 | GPIO10, MOSI |
CLK | 11 | GPIO11, SCKL |
CS | 24 | GPIO8, CE0 |
DC | 22 | GPIO25 |
RST | 11 | GPIO17 |
BUSY | 18 | GPIO24 |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file piepd-0.0.3.6.tar.gz
.
File metadata
- Download URL: piepd-0.0.3.6.tar.gz
- Upload date:
- Size: 177.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dbdcf8f294f8da38c8c48b587bb0b806fc6deac38bb24d80a780644d70f87520 |
|
MD5 | e38439d6e4d6a3a8cadb9c8f33d47c1b |
|
BLAKE2b-256 | 4cead164e4e0a3635989b444118c04cdc9765b5814db838dc089a3b63e62ff98 |