Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions eclipse_magic.lua → eclipse.lua
Original file line number Diff line number Diff line change
Expand Up @@ -90,19 +90,24 @@ LoggingFile = nil
-- times are the same. Make sure the times are correct for your location, and that your camera
-- is accurately set to GPS time.
--
-- Note that the two branches below are not interchangeable. When TestBeepNoShutter
-- is 1, get_cur_secs() subtracts the script start time, so the contact times are read
-- as an offset from when the script is run. Otherwise they are read as wall-clock
-- times from the camera's clock.
--
if ( TestBeepNoShutter == 1 )
then
-- Esterbrook: 10:23:32 11:44:37 11:46:53 13:11:42
c1.hr = 10; c1.min = 23; c1.sec = 32
c2.hr = 11; c2.min = 44; c2.sec = 37;
c3.hr = 11; c3.min = 46; c3.sec = 53;
c4.hr = 13; c4.min = 11; c4.sec = 42;
else
-- Testing:
c1.hr = 0; c1.min = 1; c1.sec = 00;
c2.hr = 0; c2.min = 4; c2.sec = 00;
c3.hr = 0; c3.min = 6; c3.sec = 20;
c4.hr = 0; c4.min = 9; c4.sec = 00;
else
-- Esterbrook: 10:23:32 11:44:37 11:46:53 13:11:42
c1.hr = 10; c1.min = 23; c1.sec = 32
c2.hr = 11; c2.min = 44; c2.sec = 37;
c3.hr = 11; c3.min = 46; c3.sec = 53;
c4.hr = 13; c4.min = 11; c4.sec = 42;
end


Expand Down