Hello all,
I have created a little script that takes a picture when I break the circuit to my PowerShot SX100 IS, actually 4 hooked to a usb hub. I am doing this with wireless, I don't think that is my problem though. My problem is the first time I "shoot" after turning on the cameras its fast <2 sec. then it seems like it is stuck in "playback_mode". When I "shoot" again it takes >10 sec. far too long for my project. any help would be great.
PS I am running a VB script to pick the pictures up then delete them from the camera after it gets them.
sleep 1000
beep
goto "power"
:power
do
a = get_usb_power
print a
sleep 1000
until a > 1
goto "main"
:main
take_photo_now
sleep 250
enable_usb_download
sleep 9000
disable_usb_download
goto "power"
end