diff options
Diffstat (limited to 'make_photo')
-rwxr-xr-x | make_photo | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,10 +1,12 @@ #!/bin/bash export LC_TIME=de_DE.utf-8 image=/mnt/ramdisk/$(date +'%H_%M').jpg -#image_small=/mnt/ramdisk/$(date +'%H_%M')_thumb.jpg - +#take photo rpicam-still -o $image #add date string convert $image -resize 1024x768 -gravity SouthEast -font DejaVu-Sans -pointsize 50 -stroke black -undercolor black -fill "rgba(255,255,255,0.5)" -annotate +30+30 "$(date +\\'%Y-%m-%d %H:%M\')" $image -#convert $image -resize 200x150 $image_small +#read cpu temp +read_temperature.py +#plot cpu temp +plot.py $image $image |