composants:rpi_card

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revisionBoth sides next revision
composants:rpi_card [2020/11/06 16:20] – [Activating Camera] mhcomposants:rpi_card [2020/11/06 16:54] – [Running scripts at startup] mh
Line 8: Line 8:
  
  
-==== Activating SSH ====+====SSH =====
  
 <code bash> <code bash>
Line 18: Line 18:
 It is good practice to have your router assign a static IP address to a RPi if you want to regularly connect to it via ''ssh'' It is good practice to have your router assign a static IP address to a RPi if you want to regularly connect to it via ''ssh''
  
-==== Activating Camera ====+====Camera ===== 
 + 
 +==== Activating the camera ====
  
 <code bash> <code bash>
Line 26: Line 28:
 Go to ''Interface Options'' then ''Camera'' and activate it. Raspi-config will propose a reboot which should be accepted. Go to ''Interface Options'' then ''Camera'' and activate it. Raspi-config will propose a reboot which should be accepted.
  
-=== Python script to take pictures ===+ 
 +==== Python script to take pictures ====
  
 Navigate to a folder where you want the script to be located. Navigate to a folder where you want the script to be located.
Line 59: Line 62:
 You can view the picture by either copying it to another machine with ''scp'' or by using a screen and mouse/keyboard on the pi itself. You can view the picture by either copying it to another machine with ''scp'' or by using a screen and mouse/keyboard on the pi itself.
  
-==== Running scripts at startup ====+==== Creating a Timelapse with Camera ==== 
 + 
 +You can use the built-in ''raspistill'' tool or make up your own in your choice of code language. 
 + 
 +Example with ''raspistill''
 + 
 +<code bash> 
 +$ raspistill -w 1920 -h 1080 - t 10000 -tl 1000 -o image%04d.jpg 
 +</code> 
 + 
 +This will take FullHD shots at 1 second interval for 10 seconds, naming them with 4-digit incremental numbers. 
 + 
 +If no ''-w'' and ''-h'' options are provided, the Raspberry Pi will default to taking full sized pictures : 4056 x 3040 which will weigh approx. ~6 MB each. Also note that a Pi 4 will not be able to take these effeciently at an interval ~< 2s. 
 + 
 +''raspistill'' has a lot of options and effects that can be activated/parametered, have a look at ''raspistill --help'' or ''man raspistill'' 
 +===== Scripts @ startup =====
  
 Modify the /etc/rc.local file (requires sudo) Modify the /etc/rc.local file (requires sudo)
  • composants/rpi_card.txt
  • Last modified: 2021/05/23 19:48
  • by mh