Difference between revisions of "Raspberry PI Camera"

From BITPlan Wiki
Jump to navigation Jump to search
(Created page with "<youtube>T8T6S5eFpqE</youtube> * http://raspberrypiguide.de/howtos/raspberry-pi-camera-how-to/ Category:Raspberry")
 
Line 2: Line 2:
 
* http://raspberrypiguide.de/howtos/raspberry-pi-camera-how-to/
 
* http://raspberrypiguide.de/howtos/raspberry-pi-camera-how-to/
  
 +
= Installation =
 +
== Set permissions ==
 +
https://raspberrypi.stackexchange.com/a/42915/11220
 +
<source lang='bash'>
 +
sudo usermod -a -G video $(whoami)
 +
</source>
 +
= Test =
 +
<source lang='bash'>
 +
cd /tmp
 +
raspistill -t 0 -k -o image.jpg
 +
</source>
 
[[Category:Raspberry]]
 
[[Category:Raspberry]]

Revision as of 06:49, 12 June 2019

Installation

Set permissions

https://raspberrypi.stackexchange.com/a/42915/11220

sudo usermod -a -G video $(whoami)

Test

cd /tmp
raspistill -t 0 -k -o image.jpg