From a4bd06f2d9a8d79e8d777905d16dce7c611480e1 Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Wed, 17 Oct 2018 12:08:56 -0400 Subject: [PATCH] This one's pretty funny. Timed exposure sequences were operating backwards, where the timed exposure was running while the cap was over the lens. Whoops. --- ino/intval2_button_servo/intval2_button_servo.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ino/intval2_button_servo/intval2_button_servo.ino b/ino/intval2_button_servo/intval2_button_servo.ino index 8133f13..89d4961 100644 --- a/ino/intval2_button_servo/intval2_button_servo.ino +++ b/ino/intval2_button_servo/intval2_button_servo.ino @@ -106,7 +106,7 @@ void loop () { } if (running) { - if (timed && black) { + if (timed && !black) { Read_timed(); } else { Read_micro();