mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-23 20:18:52 +00:00
Update the stats menu to include longest job and extruded filament
This commit is contained in:
parent
86d9311495
commit
9e5dbf67e8
@ -561,22 +561,35 @@
|
||||
#define MSG_INFO_PRINT_COUNT "Print Count"
|
||||
#endif
|
||||
#ifndef MSG_INFO_COMPLETED_PRINTS
|
||||
#define MSG_INFO_COMPLETED_PRINTS "Completed "
|
||||
#define MSG_INFO_COMPLETED_PRINTS "Completed"
|
||||
#endif
|
||||
#ifndef MSG_INFO_PRINT_TIME
|
||||
#define MSG_INFO_PRINT_TIME "Total Time "
|
||||
#define MSG_INFO_PRINT_TIME "Total print time"
|
||||
#endif
|
||||
#ifndef MSG_INFO_PRINT_LONGEST
|
||||
#define MSG_INFO_PRINT_LONGEST "Longest job time"
|
||||
#endif
|
||||
#ifndef MSG_INFO_PRINT_FILAMENT
|
||||
#define MSG_INFO_PRINT_FILAMENT "Extruded total"
|
||||
#endif
|
||||
#else
|
||||
#ifndef MSG_INFO_PRINT_COUNT
|
||||
#define MSG_INFO_PRINT_COUNT "Prints "
|
||||
#define MSG_INFO_PRINT_COUNT "Prints"
|
||||
#endif
|
||||
#ifndef MSG_INFO_COMPLETED_PRINTS
|
||||
#define MSG_INFO_COMPLETED_PRINTS "Completed"
|
||||
#endif
|
||||
#ifndef MSG_INFO_PRINT_TIME
|
||||
#define MSG_INFO_PRINT_TIME "Duration "
|
||||
#define MSG_INFO_PRINT_TIME "Total"
|
||||
#endif
|
||||
#ifndef MSG_INFO_PRINT_LONGEST
|
||||
#define MSG_INFO_PRINT_LONGEST "Longest"
|
||||
#endif
|
||||
#ifndef MSG_INFO_PRINT_FILAMENT
|
||||
#define MSG_INFO_PRINT_FILAMENT "Extruded"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef MSG_INFO_MIN_TEMP
|
||||
#define MSG_INFO_MIN_TEMP "Min Temp"
|
||||
#endif
|
||||
|
@ -1972,17 +1972,26 @@ void kill_screen(const char* lcd_msg) {
|
||||
static void lcd_info_stats_menu() {
|
||||
if (LCD_CLICKED) { lcd_goto_previous_menu(true); return; }
|
||||
|
||||
printStatistics stats = print_job_timer.getStats();
|
||||
timestamp_t time(stats.printTime);
|
||||
|
||||
char buffer[21];
|
||||
time.toString(buffer);
|
||||
printStatistics stats = print_job_timer.getStats();
|
||||
|
||||
START_SCREEN(); // 12345678901234567890
|
||||
STATIC_ITEM(MSG_INFO_PRINT_COUNT ": ", false, false, itostr3left(stats.totalPrints)); // Print Count: 999
|
||||
STATIC_ITEM(MSG_INFO_COMPLETED_PRINTS": ", false, false, itostr3left(stats.finishedPrints)); // Completed : 666
|
||||
STATIC_ITEM(MSG_INFO_PRINT_TIME ": ", false, false); // Total Time :
|
||||
STATIC_ITEM(" ", false, false, buffer); // 12345d 12h 34m
|
||||
START_SCREEN(); // 12345678901234567890
|
||||
STATIC_ITEM(MSG_INFO_PRINT_COUNT ": ", false, false, itostr3left(stats.totalPrints)); // Print Count: 999
|
||||
STATIC_ITEM(MSG_INFO_COMPLETED_PRINTS" : ", false, false, itostr3left(stats.finishedPrints)); // Completed : 666
|
||||
|
||||
timestamp_t time(stats.printTime);
|
||||
time.toString(buffer);
|
||||
STATIC_ITEM(MSG_INFO_PRINT_TIME ": ", false, false); // Total print Time:
|
||||
STATIC_ITEM("", false, false, buffer); // 99y 364d 23h 59m 59s
|
||||
|
||||
time.timestamp = stats.longestPrint;
|
||||
time.toString(buffer);
|
||||
STATIC_ITEM(MSG_INFO_PRINT_LONGEST ": ", false, false); // Longest job time:
|
||||
STATIC_ITEM("", false, false, buffer); // 99y 364d 23h 59m 59s
|
||||
|
||||
sprintf_P(buffer, PSTR("%im"), stats.filamentUsed / 1000);
|
||||
STATIC_ITEM(MSG_INFO_PRINT_FILAMENT ": ", false, false); // Extruded total:
|
||||
STATIC_ITEM("", false, false, buffer); // 125m
|
||||
END_SCREEN();
|
||||
}
|
||||
#endif // PRINTCOUNTER
|
||||
|
Loading…
Reference in New Issue
Block a user