Return true if the first file channel is waiting for a heater to reach temperature
| 1196 | |
| 1197 | // Return true if the first file channel is waiting for a heater to reach temperature |
| 1198 | bool GCodes::IsHeatingUp() const noexcept |
| 1199 | { |
| 1200 | return FileGCode()->IsWaitingForTemperatures(); |
| 1201 | } |
| 1202 | |
| 1203 | // Stop waiting for temperatures to be reached, optionally just in the file(s) being printed |
| 1204 | void GCodes::CancelWaitForTemperatures(bool onlyInPrintFiles) noexcept |
no test coverage detected