Pipaper is a custom made Raspberry Pi based e-paper display that shows the current time and weather condition (icon). The weather data is fetched from WeatherAPI.
- Raspberry Pi Zero 2 WH + 64GB microSD card
- Raspbian OS (Bookworm) 64-bits with SPI enabled
- Waveshare 2.13inch e-Paper HAT (V4) 255x122 pixels
- Python 3.10.12
git clone github.com/olafrv/pipaper.git
cd pipaper
Without a virtual environment:
sudo apt install --yes $(cat requirements.txt | sed 's/^/python3-/g')
With a virtual environment:
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
Create .env
file with the following content:
WEATHER_API_KEY="weather_api_key"
WEATHER_API_LAT="47.7796"
WEATHER_API_LON="10.6183"
EPAPER_WIDTH=250
EPAPER_HEIGHT=122
python3 main.py
bash service.sh # Install the service on boot
journalctl -u pipaper # Check the service logs
# sudo systemctl stop pipaper
# sudo systemctl start pipaper