Hi, I'm making some progress with my PanoHead, I already can sent different commands to my S3 cam, but now I need some feedback from the camera. On my Fuji S5600 i had a status LED which indicated when the cam has finished taking a picture, so I mounted a phototransistor on it. Now I'm trying to implement the same feature in my uBasic script, but without real success.
do
a=get_usb_power
until a>0
if a<14 and b=0 then
set_led 10 1
print "take photo"
click "shoot_full"
sleep 100
do
get_prop 205 w
until w<>1
set_led 10 0
endif
b is always zero at the moment, it's meant for bracketed shots in the future.
I tried
click "shoot_full"
and
shoot
,
sometimes the LED is on quite a while, sometimes it's off while shooting, and sometimes it blinks after shooting for a second or so.... the LED is the one on the front, next to the flash light.
Anybody an idea for me??
Thanks alot!
Volker