|
@@ -38,6 +38,8 @@
|
|
|
"machine_nozzle_head_distance": { "default": 3, "SEE_machine_extruder_trains": true },
|
|
|
"machine_nozzle_expansion_angle": { "default": 45, "SEE_machine_extruder_trains": true },
|
|
|
"machine_heat_zone_length": { "default": 16, "SEE_machine_extruder_trains": true },
|
|
|
+ "machine_nozzle_heat_up_speed": { "default": 2.0, "SEE_machine_extruder_trains": true },
|
|
|
+ "machine_nozzle_cool_down_speed": { "default": 2.0, "SEE_machine_extruder_trains": true },
|
|
|
"machine_gcode_flavor": {
|
|
|
"default": "RepRap"
|
|
|
},
|
|
@@ -513,6 +515,13 @@
|
|
|
"visible": true,
|
|
|
"icon": "category_material",
|
|
|
"settings": {
|
|
|
+ "material_flow_dependent_temperature": {
|
|
|
+ "label": "Auto Temperature",
|
|
|
+ "description": "Change the temperature each layer automatically with the average flow speed of that layer.",
|
|
|
+ "type": "boolean",
|
|
|
+ "default": true,
|
|
|
+ "visible": true
|
|
|
+ },
|
|
|
"material_print_temperature": {
|
|
|
"label": "Printing Temperature",
|
|
|
"description": "The temperature used for printing. Set at 0 to pre-heat yourself. For PLA a value of 210C is usually used.\nFor ABS a value of 230C or higher is required.",
|
|
@@ -520,8 +529,35 @@
|
|
|
"type": "float",
|
|
|
"default": 210,
|
|
|
"min_value": "0",
|
|
|
+ "max_value_warning": "260",
|
|
|
+ "enabled": "not (material_flow_dependent_temperature)"
|
|
|
+ },
|
|
|
+ "material_flow_temp_graph": {
|
|
|
+ "label": "Flow Temperature Graph",
|
|
|
+ "description": "Data linking material flow (in mm³/s) to temperature (°C).",
|
|
|
+ "unit": "",
|
|
|
+ "type": "string",
|
|
|
+ "default": "[[0.1,180],[20,230]]",
|
|
|
+ "enabled": "material_flow_dependent_temperature"
|
|
|
+ },
|
|
|
+ "material_standby_temperature": {
|
|
|
+ "label": "Standby Temperature",
|
|
|
+ "description": "The temperature of the nozzle when another nozzle is currently used for printing.",
|
|
|
+ "unit": "°C",
|
|
|
+ "type": "float",
|
|
|
+ "default": 150,
|
|
|
+ "min_value": "0",
|
|
|
"max_value_warning": "260"
|
|
|
},
|
|
|
+ "material_extrusion_cool_down_speed": {
|
|
|
+ "label": "Extrusion Cool Down Speed Modifier",
|
|
|
+ "description": "The extra speed by which the nozzle cools when while extruding. The same value is used to signify the heat up speed lost when heating up while extruding.",
|
|
|
+ "unit": "°C/s",
|
|
|
+ "type": "float",
|
|
|
+ "default": 0.5,
|
|
|
+ "min_value": "0",
|
|
|
+ "max_value_warning": "10.0"
|
|
|
+ },
|
|
|
"material_bed_temperature": {
|
|
|
"label": "Bed Temperature",
|
|
|
"description": "The temperature used for the heated printer bed. Set at 0 to pre-heat it yourself.",
|