Revision 0f2e977af415a52dd8dd51a8d1b3e08b65336af2 authored by alex@thinkpad on 03 March 2017, 17:48:02 UTC, committed by alex@thinkpad on 03 March 2017, 17:48:02 UTC
1 parent eaa8ca8
Raw File
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