Log actual Print time
-
Is there an option for DWC to log the Acual Print time after the job has finished, not the slicer print time?
-
There might be a more elegant system than I use but here is what I do...
The following line is in the "end g-code" from my slicer.
echo >>"history_job.g" state.time^ ",file," ^ job.file.fileName ^ ",elapsed time," ^ job.duration
This logs the end current time the print finishes and the elapsed time of the print in history.g. I created the file ahead of time in the system file structure and the ending of the print appends the files with lines of code for the successfully finished prints.
-
@Alex-cr I like your thinking, ill try this , cheers
was the file name ment to be history_job.g
-
Yes you are correct. I missed the _job part.
-
@Alex-cr iwonder idf this is valid ^ job.duration/60
just finish the first print with the code in
2023-09-09T15:11:31,file,0:/gcodes/TL bed 1_0.4mm_PLA__56m.gcode,elapsed time,2310 -
the /60 did work
2023-09-09T18:32:30,file,0:/gcodes/TL bed 2_0.4mm_PLA__55m.gcode,elapsed time,38.81667 -
Nice that is a great addition.