first picture script

This commit is contained in:
Bachir Soussi Chiadmi
2016-06-10 16:09:22 +02:00
parent a4682d42d9
commit cd024030da
4 changed files with 15 additions and 8 deletions
+1 -7
View File
@@ -1,10 +1,4 @@
--- Hehe Hansen - Rover
title : Rover
author : Bachir Soussi Chiadmi
date : 10-06-2016
---
Heiko Hansen - Rover
==================== ====================
autonomous raspberry pi taking pictures with gps coordinates and sending them online through gsm connection autonomous raspberry pi taking pictures with gps coordinates and sending them online through gsm connection
+3 -1
View File
@@ -14,5 +14,7 @@ make updates : ```pacman -Syyu```
install git : ```pacman -S git``` install git : ```pacman -S git```
clone this repos : ```git clone guime https://g-u-i.me/gogs/bachir/hehe-rover.git ``` clone this repos : ```git clone -o guime https://g-u-i.me/gogs/bachir/hehe-rover.git ```
## camera module ## camera module
https://wiki.archlinux.org/index.php/Raspberry_Pi#Raspberry_Pi_camera_module
Executable
+11
View File
@@ -0,0 +1,11 @@
#!/bin/sh
# author : bachir soussi chiadmi
# date : 10/06/2016
if [ ! -d "~/hehe-rover-pictures" ]; then
mkdir ~/hehe-rover-pictures
fi
date=date +"%Y-%m-%d"
/opt/vc/raspistill -q 100 -o "~/hehe-rover-pictures/$date.jpg"
View File