Difference between revisions of "Raspberry PI Camera"
Jump to navigation
Jump to search
(Created page with "<youtube>T8T6S5eFpqE</youtube> * http://raspberrypiguide.de/howtos/raspberry-pi-camera-how-to/ Category:Raspberry") |
|||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<youtube>T8T6S5eFpqE</youtube> | <youtube>T8T6S5eFpqE</youtube> | ||
* 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> | ||
+ | == Remote View == | ||
+ | see | ||
+ | * [https://github.com/silvanmelchior/RPi_Cam_Web_Interface RPi_Cam_Web_Interface (default for rc-dukes)] | ||
+ | * [https://raspberrypi.stackexchange.com/a/99626/11220 raspberrypi.stackexchange.com - uv4l] | ||
[[Category:Raspberry]] | [[Category:Raspberry]] |
Latest revision as of 13:43, 21 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
Remote View
see