HAB launch 2/CHDK camera script
Jump to navigation
Jump to search
CHDK camera script
@title Scripted Shooting
rem sleep before starting
sleep 1000
rem take 500 pics, one every 3 seconds = 25 minutes
let a=500
let b=3000
for n=1 to a
sleep b
print "Shoot", n, "of", a
shoot
next n
rem take 3000 pics, one every 10 seconds = rest of the flight
let a=3000
let b=10000
for n=1 to a
sleep b
print "Shoot", n, "of", a
shoot
next n
end
- CHDK scripting: http://chdk.wikia.com/wiki/CHDK_scripting