https://github.com/nathanfredericks/menu-display
Display today's menu at Wheelock Dining Hall on an e-ink display using the Raspberry Pi Pico W and Pimoroni's Inky Pack.
https://github.com/nathanfredericks/menu-display
raspberry-pi raspberry-pi-pico
Last synced: about 2 months ago
JSON representation
Display today's menu at Wheelock Dining Hall on an e-ink display using the Raspberry Pi Pico W and Pimoroni's Inky Pack.
- Host: GitHub
- URL: https://github.com/nathanfredericks/menu-display
- Owner: nathanfredericks
- License: mit
- Created: 2025-03-19T19:20:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-19T19:48:03.000Z (over 1 year ago)
- Last Synced: 2025-03-19T20:34:53.634Z (over 1 year ago)
- Topics: raspberry-pi, raspberry-pi-pico
- Language: Python
- Homepage:
- Size: 3.18 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Wheelock Dining Hall Menu Display
Display today's menu at Wheelock Dining Hall on an e-ink display using the Raspberry Pi Pico W and Pimoroni's Inky Pack.
## Getting Started
1. Attach Pimoroni's Inky Pack to a Raspberry Pi Pico W
2. Flash Pimoroni's firmware (version 1.23.0 - Bugfix 1) to the Pico.
3. Upload the repository to the Pico.
4. Rename `env_example.py` to `env.py` and fill in your information.
The API endpoint is an HTTP URL that accepts GET requests and returns data in the following format:
```json
{
"date": "March 19, 2025",
"menu": {
"lunch": [
"Sauteed Perogy Bowl",
"Lemon Hoisin Chicken"
],
"dinner": [
"Beef Vegetable Stew",
"Pasta with Chicken and Pomodoro Sauce"
]
}
}
```
- The API Key will be passed to the `X-API-Key` header. If your endpoint does not require authorization, set the API Key to a blank string.
# Demo
