add slow_down_layers

This commit is contained in:
Wang YB
2024-04-18 10:11:17 +08:00
parent 6e4ada127d
commit 68553eba55
7 changed files with 39 additions and 1 deletions

View File

@@ -1482,6 +1482,16 @@ void PrintConfigDef::init_fff_params()
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionFloatOrPercent(30, false));
//w25
def = this->add("slow_down_layers", coInt);
def->label = L("Number of slow layers");
def->tooltip = L("The first few layers are printed slower than normal. "
"The speed is gradually increased in a linear fashion over the specified number of layers.");
def->category = L("Speed");
def->min = 0;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionInt(0));
def = this->add("first_layer_temperature", coInts);
def->label = L("First layer");
def->full_label = L("First layer nozzle temperature");