Return the total pause time
| 311 | |
| 312 | // Return the total pause time |
| 313 | float PrintMonitor::GetPauseDuration() const noexcept |
| 314 | { |
| 315 | return (float)((paused) ? totalPauseTime + (millis64() - pauseStartTime) : totalPauseTime) * MillisToSeconds; |
| 316 | } |
| 317 | |
| 318 | // Notifies this class that a file has been set for printing |
| 319 | void PrintMonitor::StartingPrint(const char *_ecv_array filename) noexcept |