Trying to get the below script working.. On the S100 screen, its displaying that it received "ch1up","ch1mid". and "ch1down" but its not executing anything.. Can anyone see an error with the script?
That can happen if you are running the script when the camera is in "playback" rather than "shooting" mode.
Adding this code to your script (before the first
while statement) will put the camera into shooting mode if you forget :
if get_mode = 0 then goto "in_rec"
set_record 1
:wait_rec
sleep 100
if get_mode <> 0 then goto "wait_rec"
:in_rec