Geht es das CHDK menu über script zu starten?
Wenn ja wie geht das?
@title scriptloader etc.
@param a begin from
@default a 30
@param b Step size
@default b 10
@param c Steps count
@default c 10
@param d Shoot count (intervall)
@default d 10
@param e Interval (Minutes)(intervall)
@default e 0
@param f Interval (Seconds)(intervall)
@default f 10
:re
r=get_raw
:return
cls
print "alles wie normal nur halb"
print "auslöser drücken statt "
print "ganz und set für "
print "einstellungen"
print "und scriptstarten"
do
wait_click
if is_key "left" then goto "left"
if is_key "right" then goto "right"
if is_key "down" then goto "down"
if is_key "up" then goto "up"
if is_key "display" then goto "display"
if is_key "shoot_half" then goto "shoot_full"
if is_key "set" then goto "load"
if is_key "zoom_in" then goto "zoomin"
if is_key "zoom_out" then goto "zoomout"
:load
cls
print "links für blizreie"
print "rechts für intervall"
print "ab für focusbracketing"
if r >0 then goto "scriptload2" else goto "scriptload"
:scriptload
print "auf für raw an"
do
wait_click
if is_key "left" then goto "eins"
if is_key "right" then goto "zwei"
if is_key "up" then goto "rawon"
if is_key "down" then goto "drei"
:scriptload2
print "auf für raw aus"
do
wait_click
if is_key "left" then goto "eins"
if is_key "right" then goto "zwei"
if is_key "up" then goto "rawoff"
if is_key "down" then goto "drei"
:shoot_full
shoot
goto "re"
:left
click "left"
goto "re"
:right
click "right"
goto "re"
:down
click "down"
goto "re"
:up
click "up"
goto "re"
:display
click "display"
goto "re"
:zoomin
click "zoom_in"
goto "re"
:zoomout
click "zoom_out"
goto "re"
:eins
cls
print "blizreie"
sleep 3000
shoot
click "right"
click "right"
shoot
click "right"
goto "re"
:zwei
cls
t=e*60000+f*1000
if d<2 then let d=10
if t<1000 then let t=1000
print "Total time:", t*d/60000; "min", t*d%60000/1000; "sec"
sleep 1000
print "Shoot 1 of", d
shoot
for n=2 to a
sleep t
print "Shoot", n, "of", d
shoot
next n
goto "re"
:drei
sleep 500
get_focus f
for s=1 to c
g=a+s*b
print "Shoot", s, "(", g, ")"
set_focus g
shoot
next s
goto "re"
:rawon
set_raw 1
r=get_raw
print "raw "r" 1=an "
sleep 3000
goto "re"
:rawoff
set_raw 0
r=get_raw
print "raw "r" 0=aus "
sleep 3000
goto "re"
end
Mitglieder in diesem Forum: 0 Mitglieder und 2 Gäste