Thanks SkyWalker9,
Very useful information and links.
Would the following work to set the focus distance to the hyperfocal distance and lock that focus to the hyperfocal distance for interval shooting?
Modified interval.bas included with latest CHDK.
@title Intervalometer
@title Intervalometer
@param a = interval (sec)
@default a 15
x=get_hyp_dist
set_focus x
set_aflock 1
do
s = get_tick_count
click "shoot_full"
sleep a*1000 - (get_tick_count - s)
until ( 0 )
It doesn't appear to work. Will play with it some more tomorrow.