https://github.com/aazuspan/pi-photo-frame
Software for an IR-controlled, Raspberry Pi based digital photo frame slideshow.
https://github.com/aazuspan/pi-photo-frame
photo-gallery raspberry-pi
Last synced: about 2 months ago
JSON representation
Software for an IR-controlled, Raspberry Pi based digital photo frame slideshow.
- Host: GitHub
- URL: https://github.com/aazuspan/pi-photo-frame
- Owner: aazuspan
- Created: 2019-10-20T00:45:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-23T19:03:12.000Z (over 2 years ago)
- Last Synced: 2025-01-21T03:41:21.118Z (over 1 year ago)
- Topics: photo-gallery, raspberry-pi
- Language: Python
- Homepage:
- Size: 1.92 MB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Installation
```bash
pip install -e .
```
Optionally install `gpiozero` for motion sensor support:
```bash
pip install gpiozero
```
## Usage
Run `frame --help` to see usage options.
```bash
Usage: frame [OPTIONS]
Run a photo frame slideshow.
Options:
--dir TEXT Photo directory to scan [required]
--delay INTEGER Seconds between slides
--shuffle Shuffle photos [default: True]
--motion-gpio TEXT GPIO pin for optional motion sensor
--help Show this message and exit
```
For example:
```bash
frame --dir /path/to/photos --delay 30 --motion-gpio 15
```