Last active
December 22, 2020 09:16
-
-
Save Bouni/dfee80064922459284122ab889c01e00 to your computer and use it in GitHub Desktop.
use raspistill to take a picture from the RaspberryPi camera, then call processing script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| now=$(date +"%Y-%m-%dT%H-%M-%S") | |
| file="/home/pi/bwt-${now}.jpg" | |
| raspistill -vf -hf -t 1000 -o $file | |
| python3 /home/pi/status.py $file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment