It seems that md_detect_motion always does a "shoot_full". Is there a way to make it "shoot_full_only" instead?
I'm trying to create a Lua script that would return to the "detecting motion" state as quickly as possible after md_detect_motion has triggered a shot. The camera is a SX220 and I'm setting exposure and focus manually before the script is started to minimise any delay.
The excellent MDFB2013 script was my starting point but because I'm using full manual, I don't need the script to spend time resetting the exposure and focus after each trigger. I was hoping to:
- press("shoot_half") once at the start of a script
- let md_detect_motion do a press("shoot_full_only")
- release("shoot_full_only") and return to md_detect_motion as quickly as possible
- release("shoot_half") during the cleanup if the script is interrupted