mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 23:17:35 -06:00
ENH: provide filament_start and end gcode options
Requirement from user to set filament_start_gcode and filament_end_gcode. Set these two settings to advanced mode Signed-off-by: salt.wei <salt.wei@bambulab.com> Change-Id: I0d8ddb394b37614d0ef0f10f8434553cb20e9ffd
This commit is contained in:
parent
49fc813383
commit
7fb886a03c
3 changed files with 3 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "Bambulab",
|
||||
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
||||
"version": "01.01.00.20",
|
||||
"version": "01.01.01.01",
|
||||
"force_update": "0",
|
||||
"description": "the initial version of BBL configurations",
|
||||
"machine_model_list": [
|
||||
|
|
|
@ -9,9 +9,6 @@
|
|||
"filament_max_volumetric_speed": [
|
||||
"3.2"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] > 60)||(bed_temperature_initial_layer[current_extruder]>60)}M106 P3 S255\n{endif};Prevent PETG from jamming"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle"
|
||||
|
|
|
@ -722,7 +722,7 @@ void PrintConfigDef::init_fff_params()
|
|||
def->multiline = true;
|
||||
def->full_width = true;
|
||||
def->height = 120;
|
||||
def->mode = comDevelop;
|
||||
def->mode = comAdvanced;
|
||||
def->set_default_value(new ConfigOptionStrings { " " });
|
||||
|
||||
auto def_top_fill_pattern = def = this->add("top_surface_pattern", coEnum);
|
||||
|
@ -2016,7 +2016,7 @@ void PrintConfigDef::init_fff_params()
|
|||
def->multiline = true;
|
||||
def->full_width = true;
|
||||
def->height = 12;
|
||||
def->mode = comDevelop;
|
||||
def->mode = comAdvanced;
|
||||
def->set_default_value(new ConfigOptionStrings { " " });
|
||||
|
||||
def = this->add("single_extruder_multi_material", coBool);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue