Skip to content

Commit

Permalink
Tweak initial ETA calculations to assume 1 C/s ramp times
Browse files Browse the repository at this point in the history
  • Loading branch information
jperfetto committed Jun 27, 2011
1 parent 0598f29 commit c853acc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arduino/OpenPCR/thermocycler.cpp
Expand Up @@ -515,7 +515,7 @@ void Thermocycler::UpdateEta() {
if (iProgramState == ERunning) {
double secondPerDegree;
if (iElapsedRampDegrees == 0 || !iHasCooled)
secondPerDegree = 0.8;
secondPerDegree = 1.0;
else
secondPerDegree = iElapsedRampDurationMs / 1000 / iElapsedRampDegrees;

Expand Down

0 comments on commit c853acc

Please sign in to comment.