Return the warm-up time
| 305 | |
| 306 | // Return the warm-up time |
| 307 | float PrintMonitor::GetWarmUpDuration() const noexcept |
| 308 | { |
| 309 | return (float)((heatingUp) ? warmUpDuration + (millis64() - heatingStartedTime) : warmUpDuration) * MillisToSeconds; |
| 310 | } |
| 311 | |
| 312 | // Return the total pause time |
| 313 | float PrintMonitor::GetPauseDuration() const noexcept |
no outgoing calls
no test coverage detected