From 1986182d6195ebe98ab6183718184551744ddbe4 Mon Sep 17 00:00:00 2001 From: Skylar Grant Date: Tue, 25 Jun 2024 10:19:46 -0400 Subject: [PATCH] Updating docs --- timelapse/README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/timelapse/README.md b/timelapse/README.md index ef4329d..397a624 100644 --- a/timelapse/README.md +++ b/timelapse/README.md @@ -27,4 +27,21 @@ CRON_FILE -- What to name the cron job file. CRON_FREQUENCY -- Will get set by the script when starting a time lapse CRON_LOG_PATH -- Complete path to output log location, including filename CRON_JOB -- Text of the cron job, starting with the user, do not include frequency here +``` + +#### `tl-capture` +``` +IMG_DIR -- Directory to save timelapse images to before syncing. Must match tl-control +NAS_MOUNT_DIR -- Path to root mount of remote device +SYNC_DES_PATH -- Path on remote device to sync images to +RESOLUTION -- Resolution of image, given to fswebcam as -r +DEVICE -- Device file, given to fswebcam as -d +FRAMES -- Number of frames to capture, given to fswebcam as -F +SKIPS -- Number of frames to skip, given to fswebcam as -S + +# Pre-script configurations +# Generate the date for the filename +DATE=$(date +"%Y-%m-%d_%H-%M") +# Form the filename +FILENAME="TL-$DATE.jpg" ``` \ No newline at end of file