Skip to content

Instantly share code, notes, and snippets.

@sunmockyang
Last active October 11, 2016 21:31
Show Gist options
  • Select an option

  • Save sunmockyang/555e6a6304b3384ed036c529bfd40e0e to your computer and use it in GitHub Desktop.

Select an option

Save sunmockyang/555e6a6304b3384ed036c529bfd40e0e to your computer and use it in GitHub Desktop.
Single shot raspistill
#!/bin/sh
WIDTH=1920
HEIGHT=1080
DIR="~/"
mkdir -p $DIR
FILE_NAME="${DIR}$(date +"%Y-%m-%d_%H%M%S").jpg"
echo "TAKING PICTURE... ${FILE_NAME}"
raspistill -w $WIDTH -h $HEIGHT -vf -hf -awb sun -n -o $FILE_NAME
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment