update comments

This commit is contained in:
caternuson 2024-05-02 08:04:52 -07:00
parent ca525c0e34
commit 6bfdbd656d
2 changed files with 9 additions and 1 deletions

View file

@ -13,7 +13,6 @@ import digitalio
# Timelapse script, because timelapse options in raspistill don't power # Timelapse script, because timelapse options in raspistill don't power
# down the camera between captures. Script also provides a camera busy LED # down the camera between captures. Script also provides a camera busy LED
# (v2 cameras don't include one) and a system halt button. # (v2 cameras don't include one) and a system halt button.
# 'gpio' command requires WiringPi: sudo apt-get install wiringpi
# Limitations: if DEST is FAT32 filesystem, max of 65535 files in directory; # Limitations: if DEST is FAT32 filesystem, max of 65535 files in directory;
# if DEST is ext4 filesystem, may have performance issues above 10K files. # if DEST is ext4 filesystem, may have performance issues above 10K files.
# For intervals <2 sec, better just to use raspistill's timelapse feature. # For intervals <2 sec, better just to use raspistill's timelapse feature.

View file

@ -1,5 +1,14 @@
#!/bin/sh #!/bin/sh
#--------------------------------------------------------------------
# NOTE !!!!!
# Do NOT use this script.
#
# This is the original script used for the guide. It is out of date
# and no longer used. It is only here for reference. Use the .py
# version of the script found in this same repository.
#--------------------------------------------------------------------
# Timelapse script, because timelapse options in raspistill don't power # Timelapse script, because timelapse options in raspistill don't power
# down the camera between captures. Script also provides a camera busy LED # down the camera between captures. Script also provides a camera busy LED
# (v2 cameras don't include one) and a system halt button. # (v2 cameras don't include one) and a system halt button.