I don't know about the other camera settings. I guess they are all the default. The camera it self is on AUTO mode.
In any case I would like to setup every possible parameters using the script.
It happened to me today that while I was working with the SD card on the computer, while editing the script file, for some reason it also got filled with zeros when I opened it on the camera. I am not sure if it was the computer or the camera that reset/filled the file.
The script is not that big so I place it here.
--[[
@title USB Triggered
@chdk_version 1.3
--]]
set_config_value(121, 1)
focus_distance = 65535
props = require("propcase")
set_config_value(106, 1)
set_config_value(105, 100)
set_raw(1)
set_raw_nr("2")
set_zoom(0)
repeat
sleep(100)
until (get_zoom() == 0)
set_mf(1)
set_aflock(1)
set_prop(props.AF_LOCK,1)
sleep(100)
press("shoot_half")
repeat
sleep(100)
until get_shooting() == true
release("shoot_half")
repeat
if ( get_usb_power(1) > 0 ) then
set_focus(focus_distance)
sleep(1000)
ecnt = get_exp_count()
set_tv96_direct(192)
set_nd_filter(2)
press("shoot_full_only")
repeat
sleep(100)
until(get_exp_count()~=ecnt)
release("shoot_full_only")
repeat
sleep(100)
until ( get_usb_power(1) == 0 )
else
sleep(100)
end
until is_pressed("menu")
set_config_value(121, 0)
set_aflock(0)
set_mf(0)