Show Total E during print (#15703)
This commit is contained in:
parent
0f8c3ed29a
commit
7a342ecb93
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -367,9 +367,14 @@ bool printingIsPaused() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void startOrResumeJob() {
|
void startOrResumeJob() {
|
||||||
|
if (!printingIsPaused()) {
|
||||||
#if ENABLED(CANCEL_OBJECTS)
|
#if ENABLED(CANCEL_OBJECTS)
|
||||||
if (!printingIsPaused()) cancelable.reset();
|
cancelable.reset();
|
||||||
#endif
|
#endif
|
||||||
|
#if ENABLED(LCD_SHOW_E_TOTAL)
|
||||||
|
e_move_accumulator = 0;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
print_job_timer.start();
|
print_job_timer.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -815,14 +815,28 @@ void MarlinUI::draw_status_screen() {
|
||||||
sprintf_P(mixer_messages, PSTR("%s %d;%d%% "), mix_label, int(mixer.mix[0]), int(mixer.mix[1]));
|
sprintf_P(mixer_messages, PSTR("%s %d;%d%% "), mix_label, int(mixer.mix[0]), int(mixer.mix[1]));
|
||||||
lcd_put_u8str(mixer_messages);
|
lcd_put_u8str(mixer_messages);
|
||||||
|
|
||||||
#else
|
#else // !DUAL_MIXING_EXTRUDER
|
||||||
|
|
||||||
|
if (true
|
||||||
|
#if ENABLED(LCD_SHOW_E_TOTAL)
|
||||||
|
&& !printingIsActive()
|
||||||
|
#endif
|
||||||
|
) {
|
||||||
xy_pos_t lpos = current_position; toLogical(lpos);
|
xy_pos_t lpos = current_position; toLogical(lpos);
|
||||||
_draw_axis_value(X_AXIS, ftostr4sign(lpos.x), blink);
|
_draw_axis_value(X_AXIS, ftostr4sign(lpos.x), blink);
|
||||||
lcd_put_wchar(' ');
|
lcd_put_wchar(' ');
|
||||||
_draw_axis_value(Y_AXIS, ftostr4sign(lpos.y), blink);
|
_draw_axis_value(Y_AXIS, ftostr4sign(lpos.y), blink);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
#if ENABLED(LCD_SHOW_E_TOTAL)
|
||||||
|
char tmp[20];
|
||||||
|
const uint8_t escale = e_move_accumulator >= 100000.0f ? 10 : 1; // After 100m switch to cm
|
||||||
|
sprintf_P(tmp, PSTR("E %ld%cm "), uint32_t(_MAX(e_move_accumulator, 0.0f)) / escale, escale == 10 ? 'c' : 'm'); // 1234567mm
|
||||||
|
lcd_put_u8str(tmp);
|
||||||
#endif
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // !DUAL_MIXING_EXTRUDER
|
||||||
|
|
||||||
#endif // HOTENDS <= 2 && (HOTENDS <= 1 || !HAS_HEATED_BED)
|
#endif // HOTENDS <= 2 && (HOTENDS <= 1 || !HAS_HEATED_BED)
|
||||||
|
|
||||||
|
|
|
@ -299,7 +299,7 @@ FORCE_INLINE void _draw_heater_status(const heater_ind_t heater, const bool blin
|
||||||
//
|
//
|
||||||
FORCE_INLINE void _draw_axis_value(const AxisEnum axis, const char *value, const bool blink) {
|
FORCE_INLINE void _draw_axis_value(const AxisEnum axis, const char *value, const bool blink) {
|
||||||
const uint8_t offs = (XYZ_SPACING) * axis;
|
const uint8_t offs = (XYZ_SPACING) * axis;
|
||||||
lcd_put_wchar(X_LABEL_POS + offs, XYZ_BASELINE, 'X' + axis);
|
lcd_put_wchar(X_LABEL_POS + offs, XYZ_BASELINE, axis_codes[axis]);
|
||||||
lcd_moveto(X_VALUE_POS + offs, XYZ_BASELINE);
|
lcd_moveto(X_VALUE_POS + offs, XYZ_BASELINE);
|
||||||
if (blink)
|
if (blink)
|
||||||
lcd_put_u8str(value);
|
lcd_put_u8str(value);
|
||||||
|
@ -328,7 +328,11 @@ void MarlinUI::draw_status_screen() {
|
||||||
if (first_page) count_renders++;
|
if (first_page) count_renders++;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static char xstring[5], ystring[5], zstring[8];
|
static char xstring[5
|
||||||
|
#if ENABLED(LCD_SHOW_E_TOTAL)
|
||||||
|
+ 7
|
||||||
|
#endif
|
||||||
|
], ystring[5], zstring[8];
|
||||||
#if ENABLED(FILAMENT_LCD_DISPLAY)
|
#if ENABLED(FILAMENT_LCD_DISPLAY)
|
||||||
static char wstring[5], mstring[4];
|
static char wstring[5], mstring[4];
|
||||||
#endif
|
#endif
|
||||||
|
@ -373,7 +377,19 @@ void MarlinUI::draw_status_screen() {
|
||||||
heat_bits = new_bits;
|
heat_bits = new_bits;
|
||||||
#endif
|
#endif
|
||||||
const xyz_pos_t lpos = current_position.asLogical();
|
const xyz_pos_t lpos = current_position.asLogical();
|
||||||
|
const bool showxy = (true
|
||||||
|
#if ENABLED(LCD_SHOW_E_TOTAL)
|
||||||
|
&& !printingIsActive()
|
||||||
|
#endif
|
||||||
|
);
|
||||||
|
if (showxy)
|
||||||
strcpy(xstring, ftostr4sign(lpos.x));
|
strcpy(xstring, ftostr4sign(lpos.x));
|
||||||
|
else {
|
||||||
|
#if ENABLED(LCD_SHOW_E_TOTAL)
|
||||||
|
const uint8_t escale = e_move_accumulator >= 100000.0f ? 10 : 1; // After 100m switch to cm
|
||||||
|
sprintf_P(xstring, PSTR("%ld%cm"), uint32_t(_MAX(e_move_accumulator, 0.0f)) / escale, escale == 10 ? 'c' : 'm'); // 1234567mm
|
||||||
|
#endif
|
||||||
|
}
|
||||||
strcpy(ystring, ftostr4sign(lpos.y));
|
strcpy(ystring, ftostr4sign(lpos.y));
|
||||||
strcpy(zstring, ftostr52sp( lpos.z));
|
strcpy(zstring, ftostr52sp( lpos.z));
|
||||||
#if ENABLED(FILAMENT_LCD_DISPLAY)
|
#if ENABLED(FILAMENT_LCD_DISPLAY)
|
||||||
|
@ -692,8 +708,14 @@ void MarlinUI::draw_status_screen() {
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
if (showxy) {
|
||||||
_draw_axis_value(X_AXIS, xstring, blink);
|
_draw_axis_value(X_AXIS, xstring, blink);
|
||||||
_draw_axis_value(Y_AXIS, ystring, blink);
|
_draw_axis_value(Y_AXIS, ystring, blink);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
_draw_axis_value(E_AXIS, xstring, true);
|
||||||
|
lcd_put_u8str_P(PSTR(" "));
|
||||||
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -59,6 +59,10 @@
|
||||||
#include "../../sd/cardreader.h"
|
#include "../../sd/cardreader.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if ENABLED(LCD_SHOW_E_TOTAL)
|
||||||
|
#include "../../Marlin.h" // for printingIsActive
|
||||||
|
#endif
|
||||||
|
|
||||||
#define TEXT_MODE_LCD_WIDTH 16
|
#define TEXT_MODE_LCD_WIDTH 16
|
||||||
|
|
||||||
#define BUFFER_WIDTH 256
|
#define BUFFER_WIDTH 256
|
||||||
|
@ -660,7 +664,7 @@ void ST7920_Lite_Status_Screen::draw_status_message() {
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void ST7920_Lite_Status_Screen::draw_position(const xyz_pos_t &pos, const bool position_known) {
|
void ST7920_Lite_Status_Screen::draw_position(const xyze_pos_t &pos, const bool position_known) {
|
||||||
char str[7];
|
char str[7];
|
||||||
set_ddram_address(DDRAM_LINE_4);
|
set_ddram_address(DDRAM_LINE_4);
|
||||||
begin_data();
|
begin_data();
|
||||||
|
@ -668,11 +672,25 @@ void ST7920_Lite_Status_Screen::draw_position(const xyz_pos_t &pos, const bool p
|
||||||
// If position is unknown, flash the labels.
|
// If position is unknown, flash the labels.
|
||||||
const unsigned char alt_label = position_known ? 0 : (ui.get_blink() ? ' ' : 0);
|
const unsigned char alt_label = position_known ? 0 : (ui.get_blink() ? ' ' : 0);
|
||||||
|
|
||||||
|
if (true
|
||||||
|
#if ENABLED(LCD_SHOW_E_TOTAL)
|
||||||
|
&& !printingIsActive()
|
||||||
|
#endif
|
||||||
|
) {
|
||||||
write_byte(alt_label ? alt_label : 'X');
|
write_byte(alt_label ? alt_label : 'X');
|
||||||
write_str(dtostrf(pos.x, -4, 0, str), 4);
|
write_str(dtostrf(pos.x, -4, 0, str), 4);
|
||||||
|
|
||||||
write_byte(alt_label ? alt_label : 'Y');
|
write_byte(alt_label ? alt_label : 'Y');
|
||||||
write_str(dtostrf(pos.y, -4, 0, str), 4);
|
write_str(dtostrf(pos.y, -4, 0, str), 4);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
#if ENABLED(LCD_SHOW_E_TOTAL)
|
||||||
|
char tmp[15];
|
||||||
|
const uint8_t escale = e_move_accumulator >= 100000.0f ? 10 : 1; // After 100m switch to cm
|
||||||
|
sprintf_P(tmp, PSTR("E%-7ld%cm "), uint32_t(_MAX(e_move_accumulator, 0.0f)) / escale, escale == 10 ? 'c' : 'm'); // 1234567mm
|
||||||
|
write_str(tmp);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
write_byte(alt_label ? alt_label : 'Z');
|
write_byte(alt_label ? alt_label : 'Z');
|
||||||
write_str(dtostrf(pos.z, -5, 1, str), 5);
|
write_str(dtostrf(pos.z, -5, 1, str), 5);
|
||||||
|
|
|
@ -87,7 +87,7 @@ class ST7920_Lite_Status_Screen {
|
||||||
static void draw_print_time(const duration_t &elapsed);
|
static void draw_print_time(const duration_t &elapsed);
|
||||||
static void draw_feedrate_percentage(const uint16_t percentage);
|
static void draw_feedrate_percentage(const uint16_t percentage);
|
||||||
static void draw_status_message();
|
static void draw_status_message();
|
||||||
static void draw_position(const xyz_pos_t &pos, bool position_known = true);
|
static void draw_position(const xyze_pos_t &pos, bool position_known = true);
|
||||||
|
|
||||||
static bool indicators_changed();
|
static bool indicators_changed();
|
||||||
static bool position_changed();
|
static bool position_changed();
|
||||||
|
|
|
@ -114,6 +114,10 @@ xyze_pos_t destination; // {0}
|
||||||
uint8_t active_extruder; // = 0
|
uint8_t active_extruder; // = 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if ENABLED(LCD_SHOW_E_TOTAL)
|
||||||
|
float e_move_accumulator; // = 0
|
||||||
|
#endif
|
||||||
|
|
||||||
// Extruder offsets
|
// Extruder offsets
|
||||||
#if HAS_HOTEND_OFFSET
|
#if HAS_HOTEND_OFFSET
|
||||||
xyz_pos_t hotend_offset[HOTENDS]; // Initialized by settings.load()
|
xyz_pos_t hotend_offset[HOTENDS]; // Initialized by settings.load()
|
||||||
|
|
|
@ -107,6 +107,10 @@ extern int16_t feedrate_percentage;
|
||||||
constexpr uint8_t active_extruder = 0;
|
constexpr uint8_t active_extruder = 0;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if ENABLED(LCD_SHOW_E_TOTAL)
|
||||||
|
extern float e_move_accumulator;
|
||||||
|
#endif
|
||||||
|
|
||||||
FORCE_INLINE float pgm_read_any(const float *p) { return pgm_read_float(p); }
|
FORCE_INLINE float pgm_read_any(const float *p) { return pgm_read_float(p); }
|
||||||
FORCE_INLINE signed char pgm_read_any(const signed char *p) { return pgm_read_byte(p); }
|
FORCE_INLINE signed char pgm_read_any(const signed char *p) { return pgm_read_byte(p); }
|
||||||
|
|
||||||
|
|
|
@ -1810,6 +1810,10 @@ bool Planner::_populate_block(block_t * const block, bool split_move,
|
||||||
delta_mm.e = esteps_float * steps_to_mm[E_AXIS_N(extruder)];
|
delta_mm.e = esteps_float * steps_to_mm[E_AXIS_N(extruder)];
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if ENABLED(LCD_SHOW_E_TOTAL)
|
||||||
|
e_move_accumulator += delta_mm.e;
|
||||||
|
#endif
|
||||||
|
|
||||||
if (block->steps.a < MIN_STEPS_PER_SEGMENT && block->steps.b < MIN_STEPS_PER_SEGMENT && block->steps.c < MIN_STEPS_PER_SEGMENT) {
|
if (block->steps.a < MIN_STEPS_PER_SEGMENT && block->steps.b < MIN_STEPS_PER_SEGMENT && block->steps.c < MIN_STEPS_PER_SEGMENT) {
|
||||||
block->millimeters = (0
|
block->millimeters = (0
|
||||||
#if EXTRUDERS
|
#if EXTRUDERS
|
||||||
|
|
|
@ -171,7 +171,7 @@ typedef struct block_t {
|
||||||
|
|
||||||
} block_t;
|
} block_t;
|
||||||
|
|
||||||
#define HAS_POSITION_FLOAT ANY(LIN_ADVANCE, SCARA_FEEDRATE_SCALING, GRADIENT_MIX)
|
#define HAS_POSITION_FLOAT ANY(LIN_ADVANCE, SCARA_FEEDRATE_SCALING, GRADIENT_MIX, LCD_SHOW_E_TOTAL)
|
||||||
|
|
||||||
#define BLOCK_MOD(n) ((n)&(BLOCK_BUFFER_SIZE-1))
|
#define BLOCK_MOD(n) ((n)&(BLOCK_BUFFER_SIZE-1))
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ opt_enable REPRAP_DISCOUNT_SMART_CONTROLLER LCD_PROGRESS_BAR LCD_PROGRESS_BAR_TE
|
||||||
EEPROM_SETTINGS SDSUPPORT SD_REPRINT_LAST_SELECTED_FILE BINARY_FILE_TRANSFER \
|
EEPROM_SETTINGS SDSUPPORT SD_REPRINT_LAST_SELECTED_FILE BINARY_FILE_TRANSFER \
|
||||||
BLINKM PCA9632 RGB_LED RGB_LED_R_PIN RGB_LED_G_PIN RGB_LED_B_PIN LED_CONTROL_MENU \
|
BLINKM PCA9632 RGB_LED RGB_LED_R_PIN RGB_LED_G_PIN RGB_LED_B_PIN LED_CONTROL_MENU \
|
||||||
NEOPIXEL_LED CASE_LIGHT_ENABLE CASE_LIGHT_USE_NEOPIXEL CASE_LIGHT_MENU \
|
NEOPIXEL_LED CASE_LIGHT_ENABLE CASE_LIGHT_USE_NEOPIXEL CASE_LIGHT_MENU \
|
||||||
PID_PARAMS_PER_HOTEND PID_AUTOTUNE_MENU PID_EDIT_MENU \
|
PID_PARAMS_PER_HOTEND PID_AUTOTUNE_MENU PID_EDIT_MENU LCD_SHOW_E_TOTAL \
|
||||||
NOZZLE_PARK_FEATURE FILAMENT_RUNOUT_SENSOR FILAMENT_RUNOUT_DISTANCE_MM \
|
NOZZLE_PARK_FEATURE FILAMENT_RUNOUT_SENSOR FILAMENT_RUNOUT_DISTANCE_MM \
|
||||||
ADVANCED_PAUSE_FEATURE FILAMENT_LOAD_UNLOAD_GCODES FILAMENT_UNLOAD_ALL_EXTRUDERS \
|
ADVANCED_PAUSE_FEATURE FILAMENT_LOAD_UNLOAD_GCODES FILAMENT_UNLOAD_ALL_EXTRUDERS \
|
||||||
AUTO_BED_LEVELING_BILINEAR Z_MIN_PROBE_REPEATABILITY_TEST DISTINCT_E_FACTORS \
|
AUTO_BED_LEVELING_BILINEAR Z_MIN_PROBE_REPEATABILITY_TEST DISTINCT_E_FACTORS \
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -903,6 +903,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
#define LCD_SET_PROGRESS_MANUALLY
|
#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
#define LCD_SET_PROGRESS_MANUALLY
|
#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -906,6 +906,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -910,6 +910,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
#define LCD_SET_PROGRESS_MANUALLY
|
#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -901,6 +901,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
#define LCD_SET_PROGRESS_MANUALLY
|
#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -906,6 +906,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
#define LCD_SET_PROGRESS_MANUALLY
|
#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -870,6 +870,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -907,6 +907,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -907,6 +907,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -904,6 +904,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -903,6 +903,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
#define LCD_SET_PROGRESS_MANUALLY
|
#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
#define LCD_SET_PROGRESS_MANUALLY
|
#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
#define LCD_SET_PROGRESS_MANUALLY
|
#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
#define LCD_SET_PROGRESS_MANUALLY
|
#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -915,6 +915,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -904,6 +904,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -902,6 +902,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
#define LCD_SET_PROGRESS_MANUALLY
|
#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -904,6 +904,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
|
@ -904,6 +904,9 @@
|
||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
#define LCD_SET_PROGRESS_MANUALLY
|
#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
// Show the E position (filament used) during printing
|
||||||
|
//#define LCD_SHOW_E_TOTAL
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
|
||||||
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
|
||||||
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
//#define SHOW_REMAINING_TIME // Display estimated time to completion
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue