Display volumetric ratio in terms of E mm
This commit is contained in:
parent
4f05a66ee1
commit
bf6a1816b4
6 changed files with 8 additions and 7 deletions
|
|
@ -651,12 +651,9 @@ static void lcd_implementation_status_screen() {
|
|||
#if ENABLED(FILAMENT_LCD_DISPLAY)
|
||||
strcpy(wstring, ftostr12ns(filament_width_meas));
|
||||
if (parser.volumetric_enabled)
|
||||
strcpy(mstring, itostr3(100.0 * filament_width_meas / filament_width_nominal));
|
||||
strcpy(mstring, itostr3(100.0 * planner.volumetric_area_nominal / planner.volumetric_multiplier[FILAMENT_SENSOR_EXTRUDER_NUM]));
|
||||
else
|
||||
strcpy_P(mstring, PSTR("---"));
|
||||
// Alternatively, show the ratio between cross-sectional areas:
|
||||
//strcpy(mstring, itostr3(100.0 / CIRCLE_AREA(filament_width_nominal * 0.5)
|
||||
// / planner.volumetric_multiplier[FILAMENT_SENSOR_EXTRUDER_NUM]));
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue