hello,
absolute beginner today started first project: timelapse-camera. used following instructions:
https://www.raspberrypi.org/learning/timelapse-setup/
far it's working charm, wondering if , how adjust frequency pictures taken. in followed instructions it's every minute. every 10 seconds.
tried altering numbers in line * * * * * /home/pi/camera.sh 2>&1, far no avail. either stop taking pictures or continue taking 1 minute.
best regards,
gert
absolute beginner today started first project: timelapse-camera. used following instructions:
https://www.raspberrypi.org/learning/timelapse-setup/
far it's working charm, wondering if , how adjust frequency pictures taken. in followed instructions it's every minute. every 10 seconds.
tried altering numbers in line * * * * * /home/pi/camera.sh 2>&1, far no avail. either stop taking pictures or continue taking 1 minute.
best regards,
gert
cron doesn't support time resolution below minute.
# * * * * * command execute
# ┬ ┬ ┬ ┬ ┬
# │ │ │ │ │
# │ │ │ │ │
# │ │ │ │ └───── day of week (0 - 7) (0 6 sunday saturday, or use names; 7 sunday, same 0)
# │ │ │ └────────── month (1 - 12)
# │ │ └─────────────── day of month (1 - 31)
# │ └──────────────────── hour (0 - 23)
# └───────────────────────── min (0 - 59)
have write own script perhaps sleep(10) , run instead...
# * * * * * command execute
# ┬ ┬ ┬ ┬ ┬
# │ │ │ │ │
# │ │ │ │ │
# │ │ │ │ └───── day of week (0 - 7) (0 6 sunday saturday, or use names; 7 sunday, same 0)
# │ │ │ └────────── month (1 - 12)
# │ │ └─────────────── day of month (1 - 31)
# │ └──────────────────── hour (0 - 23)
# └───────────────────────── min (0 - 59)
have write own script perhaps sleep(10) , run instead...
raspberrypi
Comments
Post a Comment