Added option to independently set z axis travel speed

This commit is contained in:
Martin Budden 2021-04-16 08:41:03 +01:00 committed by Lukas Matena
parent e1f2336b8e
commit bd6badf123
6 changed files with 13 additions and 2 deletions

View file

@ -2738,6 +2738,14 @@ void PrintConfigDef::init_fff_params()
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionFloat(130));
def = this->add("travel_speed_z", coFloat);
def->label = L("Z travel");
def->tooltip = L("Speed for movements along the Z axis.");
def->sidetext = L("mm/s");
def->min = 1;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionFloat(12));
def = this->add("use_firmware_retraction", coBool);
def->label = L("Use firmware retraction");
def->tooltip = L("This experimental setting uses G10 and G11 commands to have the firmware "