Skip to content

Commit

Permalink
Rework stats menu to use timestamp_t
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrazio committed Jul 23, 2016
1 parent ecd4802 commit b4aad85
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions Marlin/ultralcd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@

#if ENABLED(PRINTCOUNTER)
#include "printcounter.h"
#include "timestamp_t.h"
#endif

int preheatHotendTemp1, preheatBedTemp1, preheatFanSpeed1,
Expand Down Expand Up @@ -1971,23 +1972,17 @@ void kill_screen(const char* lcd_msg) {
static void lcd_info_stats_menu() {
if (LCD_CLICKED) { lcd_goto_previous_menu(true); return; }

PrintCounter print_job_counter = PrintCounter();
print_job_counter.loadStats();
printStatistics stats = print_job_counter.getStats();
printStatistics stats = print_job_timer.getStats();
timestamp_t time(stats.printTime);

char timeString[14];
sprintf_P(timeString,
PSTR("%i" MSG_SHORT_DAY " %i" MSG_SHORT_HOUR " %i" MSG_SHORT_MINUTE),
int(stats.printTime / 60 / 60 / 24),
int((stats.printTime / 60 / 60) % 24),
int((stats.printTime / 60) % 60)
);
char buffer[21];
time.toString(buffer);

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, timeString); // 12345d 12h 34m
STATIC_ITEM(" ", false, false, buffer); // 12345d 12h 34m
END_SCREEN();
}
#endif // PRINTCOUNTER
Expand Down

0 comments on commit b4aad85

Please sign in to comment.