https://bitbucket.org/hudson/magic-lantern
Revision ff52d1ab89125284d69777e79f2396db78b7aca0 authored by Giovanni Condello on 20 May 2013, 10:13:32 UTC, committed by Giovanni Condello on 20 May 2013, 10:13:32 UTC
1 parent 5cc5765
Raw File
Tip revision: ff52d1ab89125284d69777e79f2396db78b7aca0 authored by Giovanni Condello on 20 May 2013, 10:13:32 UTC
Disable AF_PATTERNS object for the 5D3 and the EOSM
Tip revision: ff52d1a
brack.c
// Custom bracket sequence
// ISO 3200 1/10 f1.8
// ISO 100 1/10 f8
// ISO 100 1" f8
// ISO 100 10" f8

console_hide();

set_aperture(1.8);
set_iso(3200);
set_shutter(1./10);
takepic();

set_aperture(8);
set_iso(100);
takepic();

set_shutter(1);
takepic();

set_shutter(10);
takepic();

back to top