A simple display manager app for the WaveShare 2.7in e-Paper Display
A simple display manager app for the WaveShare 2.7in e-Paper HAT
Screens
The app provides a number of screens that can be displayed on the e-paper HAT, and allows switching between them with the builtin buttons.
The included screens are:
uptime
– a system info vieweraffirmations
– display positive affirmations (or whatever kind you want, really)fortune
– shows a random fortune from the fortune database (requires thefortune-mod
package)- Install
fortune-mod
with this command:sudo apt install fortune-mod
calendar
andtasks
– shows a list of upcoming events or todos from your calendars (seelocal_settings.py.example
)
Making your own
The framework is extensible, so you can write your own screens as well, each screen is a Python module providing a Screen
class that inherits from AbstractScreen
.
For more information on how to create your own screens,