Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jamesjarvis/eink-dashboard
Fun little rarely updating dashboard
https://github.com/jamesjarvis/eink-dashboard
eink-dashboard raspberry-pi
Last synced: about 2 months ago
JSON representation
Fun little rarely updating dashboard
- Host: GitHub
- URL: https://github.com/jamesjarvis/eink-dashboard
- Owner: jamesjarvis
- License: mit
- Created: 2020-06-05T19:00:08.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-09-21T18:41:54.000Z (4 months ago)
- Last Synced: 2024-10-16T00:42:18.503Z (3 months ago)
- Topics: eink-dashboard, raspberry-pi
- Language: Python
- Homepage: https://jamesjarvis.io/posts/2020/06/umbrella-e-ink-weather-dashboard/
- Size: 3.02 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eink-dashboard 📺
> A fun little rarely updating dashboard
![Eink-display](./images/display_angled.jpg)
Currently, this repo is just an assortment of random views I am creating for the display:
| view | script |
| -------------------------------------------- | ------------------------- |
| Map with precipitation radar overlaid in red | [Mappyboi](./mappyboi.py) |
| Cowsay with Dad jokes | [Cowsay](./cowsay.py) |![Cowsay mode](./images/display_cowsay.jpg)
**Disclaimer**, this is not my best work - but it's been a bit of lockdown fun :D
## Installation
This requires python3 installed, as well as some other additional components.
Probs worth following this stuff
Then clone the repo onto the RPI, and create a new `settings.py` file from the [example provided](./settings.py.sample)
In order to run the scripts, just run
```bash
python3 mappyboi.py
```Or whack it in a cron job to be run every 10 minutes with `crontab -e` and inputting the following:
```cron
*/10 * * * * python3 /home/pi/mappyboi.py
```