Skip to content

Commit

Permalink
changed time to stop calibration to 60 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
ju1ce committed Aug 25, 2021
1 parent d478bae commit 1267617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AprilTagTrackers/Tracker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1335,7 +1335,7 @@ void Tracker::MainLoop()
inputButton = connection->GetButtonStates();

double timeSincePress = double(start - calibControllerLastPress) / double(CLOCKS_PER_SEC);
if (timeSincePress > 30) //we exit playspace calibration after 30 seconds of no input detected
if (timeSincePress > 60) //we exit playspace calibration after 30 seconds of no input detected
{
gui->cb3->SetValue(false);
wxCommandEvent event(wxEVT_COMMAND_CHECKBOX_CLICKED, gui->MANUAL_CALIB_CHECKBOX);
Expand Down

0 comments on commit 1267617

Please sign in to comment.