From e85e54272351c193a260ff42971b555bcc77d7e4 Mon Sep 17 00:00:00 2001 From: Matt Date: Wed, 11 May 2016 21:05:03 -0400 Subject: [PATCH] Start single frame when plunger released as opposed to when it is first pressed. It is with great consternation that I make this change. The original intention of the Trigger() feature was to be instant, but having used the intervalometer on several rolls now, I find the extra frame that this feature introduces into sequences to be troublesome. --- ino/intval2_buttons.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ino/intval2_buttons.ino b/ino/intval2_buttons.ino index c1eae76..6fe2736 100644 --- a/ino/intval2_buttons.ino +++ b/ino/intval2_buttons.ino @@ -171,8 +171,6 @@ void button_start (int index) { if (sequence) { sequence = false; Output(2, 250); - } else { - Trigger(); } } } @@ -185,6 +183,8 @@ void button_end (int index, long buttontime) { Output(2, 250); } Trigger(); + } else { + Trigger(); } } else if (index == 1) { //set direction if (buttontime < 1000) {