source: trunk/script/iso_bracket1.bas @ 515

Revision 515, 333 bytes checked in by reyalp, 5 years ago (diff)

set svn:eol-style and fix files that had mixed line endings. See http://chdk.setepontos.com/index.php/topic,2145.15.html

  • Property svn:eol-style set to LF
Line 
1@title Iso Bracket Real
2@param a counter begin
3@default a 1
4@param b Step size
5@default b 30
6@param c Steps count
7@default c 10
8@param d Sleep Interval (*100)
9@default d 20
10
11
12sleep 500
13
14t=d*100
15
16for i=a to c
17  g=i*b
18  sleep t
19  set_iso_real g
20  shoot
21  get_iso_real e
22  get_iso_market f
23  print "ISO:", e, "(", f, ")"
24next i
25end
Note: See TracBrowser for help on using the repository browser.