Hi all,
I have a Canon Ixus 55 with the appropriate hack kit, and it works fine.
I am using this to build a 8mm film scanner; therefore, I need to have the zoom set at maximum, and to shoot 40 test images with focus starting from 1 on to 40, so I can calibrate the view.
I have tested the following script, which I modified from the zoom-shoot example, but it takes only one image and then shuts down the camera. I was wondering if my camera is able to do what I am requesting, or whether my script fails?
It zooms out, takes one picture, and appears to be getting ready to take image #2; but then it dies and kills the camera too.
I am attaching a test image I have been able to obtain when using the zoom lever and autofocus, but for shootin 5,500 images, this is not feasible - I need a focus and zoom lock before running the motion detection to know when to shoot.
Any help greatly appreciated!
print "Zooming-out..."
set_zoom 127
for s=1 to 40
print "Shoot", s, "of", 40
set_focus s
shoot
next s
end