😉 ...some other observations:
get_zoom()=0, dof.near=dof.hyp_dist, dof.far=-1, dof.dof=-1, dof.coc=19
Strange x=get_focus_state() values (bitmap?) in Auto (collected in Log 'growing' with script)
Cam ~'never' starts with first button press...
--[[
@title FoTestr.lua
@param M Mode
@default M 2
@range M 0 79
@param s sleep
@default s 400
@range s 0 1000
--]]
capmode=require("capmode")
props=require("propcase")
print_screen(-125)
set_console_layout(0,0,45,6)
lineal=lineal or ":...,....1....,....2....,....3....,....4.."
print(lineal)
function m_info(a,b,X)
dof=get_dofinfo()
print(a,dof.focal_length,dof.eff_focal_length,capmode.get_canon(),capmode.get(),
get_prop(65),-get_focus(),get_shooting() or b,get_focus_mode(),X,dof.focus_valid,get_focus_ok())
print(get_zoom(),dof.min_stack_dist,dof.near,dof.focus,dof.far,dof.hyp_valid,dof.hyp_dist,dof.dof,dof.coc)
print(get_mode(),-s,get_prop(props.AF_LOCK),get_prop(props.AF_FRAME),get_prop(props.METERING_MODE),get_prop(props.DRIVE_MODE),'--')
end
if is_capture_mode_valid(M) then set_capture_mode(M); play_sound(1) else M=2 end
repeat
press("shoot_half")
x=get_focus_state()
if x~=0 then m_info(" ",7777,x) end
sleep(s)
x=get_focus_state()
if x~=0 then m_info("-",8888,x) end
release("shoot_half")
sleep(2*s)
until get_wheel()~=0
set_console_layout(0,0,25,5)