mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-06 23:09:01 +08:00
Merge branch 'master' of https://github.com/Ultimaker/Cura
This commit is contained in:
commit
cfe538c4b7
BIN
resources/images/MakerStarterbackplate.png
Normal file
BIN
resources/images/MakerStarterbackplate.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
BIN
resources/meshes/makerstarter_platform.stl
Normal file
BIN
resources/meshes/makerstarter_platform.stl
Normal file
Binary file not shown.
790106
resources/meshes/rigidbot_platform.stl
Normal file
790106
resources/meshes/rigidbot_platform.stl
Normal file
File diff suppressed because it is too large
Load Diff
796322
resources/meshes/rigidbotbig_platform.stl
Normal file
796322
resources/meshes/rigidbotbig_platform.stl
Normal file
File diff suppressed because it is too large
Load Diff
@ -119,6 +119,7 @@ Item {
|
||||
//: Delete object action
|
||||
text: qsTr("Delete Object");
|
||||
iconName: "edit-delete";
|
||||
shortcut: StandardKey.Backspace;
|
||||
}
|
||||
|
||||
Action {
|
||||
|
265
resources/settings/RigidBot.json
Normal file
265
resources/settings/RigidBot.json
Normal file
@ -0,0 +1,265 @@
|
||||
{
|
||||
"id": "rigidbotbig",
|
||||
"version": 1,
|
||||
"name": "RigidBot",
|
||||
"manufacturer": "Invent-A-Part",
|
||||
"author": "RBC",
|
||||
"platform": "rigidbot_platform.stl",
|
||||
|
||||
"inherits": "fdmprinter.json",
|
||||
|
||||
"machine_settings": {
|
||||
|
||||
"machine_width": { "default": 254 },
|
||||
"machine_depth": { "default": 254 },
|
||||
"machine_height": { "default": 254 },
|
||||
"machine_heated_bed": { "default": true },
|
||||
|
||||
"machine_nozzle_size": { "default": 0.4,
|
||||
"visible": true
|
||||
},
|
||||
"machine_head_shape_min_x": { "default": 0 },
|
||||
"machine_head_shape_min_y": { "default": 0 },
|
||||
"machine_head_shape_max_x": { "default": 0 },
|
||||
"machine_head_shape_max_y": { "default": 0 },
|
||||
"machine_nozzle_gantry_distance": { "default": 0 },
|
||||
"machine_gcode_flavor": { "default": "RepRap (Marlin/Sprinter)" },
|
||||
|
||||
"machine_start_gcode": {
|
||||
"default": ";Sliced at: {day} {date} {time}\n;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density}\n;Print time: {print_time}\n;Filament used: {filament_amount}m {filament_weight}g\n;Filament cost: {filament_cost}\n;M190 S{print_bed_temperature} ;Uncomment to add your own bed temperature line\n;M109 S{print_temperature} ;Uncomment to add your own temperature line\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nM205 X8 ;X/Y Jerk settings\nG1 Z15.0 F{travel_speed} ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E7 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F{travel_speed}\n;Put printing message on LCD screen\nM117 Rigibot Printing..."
|
||||
},
|
||||
"machine_end_gcode": {
|
||||
"default": ";End GCode\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+10 E-1 X-20 Y-20 F{travel_speed} ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nG1 Y230 F3000 ;move Y so the head is out of the way and Plate is moved forward\nM84 ;steppers off\nG90 ;absolute positioning\n;{profile_string}"
|
||||
}
|
||||
},
|
||||
|
||||
"categories": {
|
||||
"resolution": {
|
||||
"label": "Quality",
|
||||
"settings": {
|
||||
"layer_height": {
|
||||
"label": "Layer Height",
|
||||
"description": "The height of each layer, in mm. Normal quality prints are 0.1mm, high quality is 0.06mm. You can go up to 0.25mm with an Ultimaker for very fast prints at low quality. For most purposes, layer heights between 0.1 and 0.2mm give a good tradeoff of speed and surface finish.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.2
|
||||
},
|
||||
"shell_thickness": {
|
||||
"label": "Shell Thickness",
|
||||
"description": "The thickness of the outside shell in the horizontal and vertical direction. This is used in combination with the nozzle size to define the number of perimeter lines and the thickness of those perimeter lines. This is also used to define the number of solid top and bottom layers.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.8,
|
||||
"children": {
|
||||
"wall_thickness": {
|
||||
"label": "Wall Thickness",
|
||||
"description": "The thickness of the outside walls in the horizontal direction. This is used in combination with the nozzle size to define the number of perimeter lines and the thickness of those perimeter lines.",
|
||||
"unit": "mm",
|
||||
"default": 0.8
|
||||
},
|
||||
"top_bottom_thickness": {
|
||||
"label": "Bottom/Top Thickness",
|
||||
"description": "This controls the thickness of the bottom and top layers, the amount of solid layers put down is calculated by the layer thickness and this value. Having this value a multiple of the layer thickness makes sense. And keep it near your wall thickness to make an evenly strong part.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.3,
|
||||
"visible": true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"material": {
|
||||
"label": "Material",
|
||||
"visible": true,
|
||||
"icon": "category_material",
|
||||
"settings": {
|
||||
"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.",
|
||||
"unit": "°C",
|
||||
"type": "float",
|
||||
"default": 195,
|
||||
"visible": true
|
||||
},
|
||||
"material_bed_temperature": {
|
||||
"label": "Bed Temperature",
|
||||
"description": "The temperature used for the heated printer bed. Set at 0 to pre-heat it yourself.",
|
||||
"unit": "°C",
|
||||
"type": "float",
|
||||
"default": 60,
|
||||
"visible": true
|
||||
},
|
||||
"material_diameter": {
|
||||
"label": "Diameter",
|
||||
"description": "The diameter of your filament needs to be measured as accurately as possible.\nIf you cannot measure this value you will have to calibrate it, a higher number means less extrusion, a smaller number generates more extrusion.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 1.75,
|
||||
"visible": true
|
||||
},
|
||||
"retraction_enable": {
|
||||
"label": "Enable Retraction",
|
||||
"description": "Retract the filament when the nozzle is moving over a non-printed area. Details about the retraction can be configured in the advanced tab.",
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"always_visible": true,
|
||||
|
||||
"children": {
|
||||
"retraction_speed": {
|
||||
"label": "Retraction Speed",
|
||||
"description": "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding.",
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 50.0,
|
||||
"visible": false
|
||||
},
|
||||
"retraction_amount": {
|
||||
"label": "Retraction Distance",
|
||||
"description": "The amount of retraction: Set at 0 for no retraction at all. A value of 4.5mm seems to generate good results for 3mm filament in Bowden-tube fed printers.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.8,
|
||||
"visible": false
|
||||
},
|
||||
"retraction_hop": {
|
||||
"label": "Z Hop when Retracting",
|
||||
"description": "Whenever a retraction is done, the head is lifted by this amount to travel over the print. A value of 0.075 works well. This feature has a lot of positive effect on delta towers.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.075,
|
||||
"visible": false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"speed": {
|
||||
"label": "Speed",
|
||||
"visible": true,
|
||||
"icon": "category_speed",
|
||||
"settings": {
|
||||
"speed_print": {
|
||||
"label": "Print Speed",
|
||||
"description": "The speed at which printing happens. A well-adjusted Ultimaker can reach 150mm/s, but for good quality prints you will want to print slower. Printing speed depends on a lot of factors, so you will need to experiment with optimal settings for this.",
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 60.0,
|
||||
"visible": true,
|
||||
"children": {
|
||||
"speed_infill": {
|
||||
"label": "Infill Speed",
|
||||
"description": "The speed at which infill parts are printed. Printing the infill faster can greatly reduce printing time, but this can negatively affect print quality.",
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 100.0,
|
||||
"visible": true
|
||||
},
|
||||
"speed_topbottom": {
|
||||
"label": "Top/Bottom Speed",
|
||||
"description": "Speed at which top/bottom parts are printed. Printing the top/bottom faster can greatly reduce printing time, but this can negatively affect print quality.",
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 15.0,
|
||||
"visible": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"speed_travel": {
|
||||
"label": "Travel Speed",
|
||||
"description": "The speed at which travel moves are done. A well-built Ultimaker can reach speeds of 250mm/s. But some machines might have misaligned layers then.",
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 150.0,
|
||||
"visible": true
|
||||
},
|
||||
"speed_layer_0": {
|
||||
"label": "Bottom Layer Speed",
|
||||
"description": "The print speed for the bottom layer: You want to print the first layer slower so it sticks to the printer bed better.",
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"min_value": 0.1,
|
||||
"default": 15.0,
|
||||
"visible": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"infill": {
|
||||
"label": "Infill",
|
||||
"visible": true,
|
||||
"icon": "category_infill",
|
||||
"settings": {
|
||||
"fill_overlap": {
|
||||
"label": "Infill Overlap",
|
||||
"description": "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill.",
|
||||
"unit": "%",
|
||||
"type": "float",
|
||||
"default": 10.0
|
||||
}
|
||||
}
|
||||
},
|
||||
"cooling": {
|
||||
"label": "Cooling",
|
||||
"visible": true,
|
||||
"icon": "category_cool",
|
||||
"settings": {
|
||||
"cool_fan_enabled": {
|
||||
"label": "Enable Cooling Fan",
|
||||
"description": "Enable the cooling fan during the print. The extra cooling from the cooling fan helps parts with small cross sections that print each layer quickly.",
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"visible": true,
|
||||
"children": {
|
||||
"cool_fan_speed": {
|
||||
"label": "Fan Speed",
|
||||
"description": "Fan speed used for the print cooling fan on the printer head. Set to 0% to disable or if you do not have a cooling fan.",
|
||||
"unit": "%",
|
||||
"type": "float",
|
||||
"default": 0.0,
|
||||
"visible": true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"platform_adhesion": {
|
||||
"label": "Platform Adhesion",
|
||||
"visible": true,
|
||||
"icon": "category_adhesion",
|
||||
"settings": {
|
||||
"skirt_line_count": {
|
||||
"label": "Skirt Line Count",
|
||||
"description": "The skirt is a line drawn around the first layer of the. This helps to prime your extruder, and to see if the object fits on your platform. Setting this to 0 will disable the skirt. Multiple skirt lines can help to prime your extruder better for small objects.",
|
||||
"type": "int",
|
||||
"default": 3,
|
||||
"active_if": {
|
||||
"setting": "adhesion_type",
|
||||
"value": "None"
|
||||
}
|
||||
},
|
||||
"skirt_gap": {
|
||||
"label": "Skirt Distance",
|
||||
"description": "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance, multiple skirt lines will extend outwards from this distance.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 4.0,
|
||||
"active_if": {
|
||||
"setting": "adhesion_type",
|
||||
"value": "None"
|
||||
}
|
||||
},
|
||||
"skirt_minimal_length": {
|
||||
"label": "Skirt Minimum Length",
|
||||
"description": "The minimum length of the skirt. If this minimum length is not reached, more skirt lines will be added to reach this minimum length. Note: If the line count is set to 0 this is ignored.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 200.0,
|
||||
"active_if": {
|
||||
"setting": "adhesion_type",
|
||||
"value": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
263
resources/settings/RigidBotBig.json
Normal file
263
resources/settings/RigidBotBig.json
Normal file
@ -0,0 +1,263 @@
|
||||
{
|
||||
"id": "rigidbotbig",
|
||||
"version": 1,
|
||||
"name": "RigidBotBig",
|
||||
"manufacturer": "Invent-A-Part",
|
||||
"author": "RBC",
|
||||
"platform": "rigidbotbig_platform.stl",
|
||||
|
||||
"inherits": "fdmprinter.json",
|
||||
|
||||
"machine_settings": {
|
||||
|
||||
"machine_width": { "default": 400 },
|
||||
"machine_depth": { "default": 300 },
|
||||
"machine_height": { "default": 254 },
|
||||
"machine_heated_bed": { "default": true },
|
||||
|
||||
"machine_nozzle_size": { "default": 0.4},
|
||||
"machine_head_shape_min_x": { "default": 0 },
|
||||
"machine_head_shape_min_y": { "default": 0 },
|
||||
"machine_head_shape_max_x": { "default": 0 },
|
||||
"machine_head_shape_max_y": { "default": 0 },
|
||||
"machine_nozzle_gantry_distance": { "default": 0 },
|
||||
"machine_gcode_flavor": { "default": "RepRap (Marlin/Sprinter)" },
|
||||
|
||||
"machine_start_gcode": {
|
||||
"default": ";Sliced at: {day} {date} {time}\n;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density}\n;Print time: {print_time}\n;Filament used: {filament_amount}m {filament_weight}g\n;Filament cost: {filament_cost}\n;M190 S{print_bed_temperature} ;Uncomment to add your own bed temperature line\n;M109 S{print_temperature} ;Uncomment to add your own temperature line\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nM205 X8 ;X/Y Jerk settings\nG1 Z15.0 F{travel_speed} ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E7 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F{travel_speed}\n;Put printing message on LCD screen\nM117 Rigibot Printing..."
|
||||
},
|
||||
"machine_end_gcode": {
|
||||
"default": ";End GCode\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+10 E-1 X-20 Y-20 F{travel_speed} ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nG1 Y230 F3000 ;move Y so the head is out of the way and Plate is moved forward\nM84 ;steppers off\nG90 ;absolute positioning\n;{profile_string}"
|
||||
}
|
||||
},
|
||||
|
||||
"categories": {
|
||||
"resolution": {
|
||||
"label": "Quality",
|
||||
"settings": {
|
||||
"layer_height": {
|
||||
"label": "Layer Height",
|
||||
"description": "The height of each layer, in mm. Normal quality prints are 0.1mm, high quality is 0.06mm. You can go up to 0.25mm with an Ultimaker for very fast prints at low quality. For most purposes, layer heights between 0.1 and 0.2mm give a good tradeoff of speed and surface finish.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.2
|
||||
},
|
||||
"shell_thickness": {
|
||||
"label": "Shell Thickness",
|
||||
"description": "The thickness of the outside shell in the horizontal and vertical direction. This is used in combination with the nozzle size to define the number of perimeter lines and the thickness of those perimeter lines. This is also used to define the number of solid top and bottom layers.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.8,
|
||||
"children": {
|
||||
"wall_thickness": {
|
||||
"label": "Wall Thickness",
|
||||
"description": "The thickness of the outside walls in the horizontal direction. This is used in combination with the nozzle size to define the number of perimeter lines and the thickness of those perimeter lines.",
|
||||
"unit": "mm",
|
||||
"default": 0.8
|
||||
},
|
||||
"top_bottom_thickness": {
|
||||
"label": "Bottom/Top Thickness",
|
||||
"description": "This controls the thickness of the bottom and top layers, the amount of solid layers put down is calculated by the layer thickness and this value. Having this value a multiple of the layer thickness makes sense. And keep it near your wall thickness to make an evenly strong part.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.3,
|
||||
"visible": true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"material": {
|
||||
"label": "Material",
|
||||
"visible": true,
|
||||
"icon": "category_material",
|
||||
"settings": {
|
||||
"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.",
|
||||
"unit": "°C",
|
||||
"type": "float",
|
||||
"default": 195,
|
||||
"visible": true
|
||||
},
|
||||
"material_bed_temperature": {
|
||||
"label": "Bed Temperature",
|
||||
"description": "The temperature used for the heated printer bed. Set at 0 to pre-heat it yourself.",
|
||||
"unit": "°C",
|
||||
"type": "float",
|
||||
"default": 60,
|
||||
"visible": true
|
||||
},
|
||||
"material_diameter": {
|
||||
"label": "Diameter",
|
||||
"description": "The diameter of your filament needs to be measured as accurately as possible.\nIf you cannot measure this value you will have to calibrate it, a higher number means less extrusion, a smaller number generates more extrusion.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 1.75,
|
||||
"visible": true
|
||||
},
|
||||
"retraction_enable": {
|
||||
"label": "Enable Retraction",
|
||||
"description": "Retract the filament when the nozzle is moving over a non-printed area. Details about the retraction can be configured in the advanced tab.",
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"always_visible": true,
|
||||
|
||||
"children": {
|
||||
"retraction_speed": {
|
||||
"label": "Retraction Speed",
|
||||
"description": "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding.",
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 50.0,
|
||||
"visible": false
|
||||
},
|
||||
"retraction_amount": {
|
||||
"label": "Retraction Distance",
|
||||
"description": "The amount of retraction: Set at 0 for no retraction at all. A value of 4.5mm seems to generate good results for 3mm filament in Bowden-tube fed printers.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.8,
|
||||
"visible": false
|
||||
},
|
||||
"retraction_hop": {
|
||||
"label": "Z Hop when Retracting",
|
||||
"description": "Whenever a retraction is done, the head is lifted by this amount to travel over the print. A value of 0.075 works well. This feature has a lot of positive effect on delta towers.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.075,
|
||||
"visible": false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"speed": {
|
||||
"label": "Speed",
|
||||
"visible": true,
|
||||
"icon": "category_speed",
|
||||
"settings": {
|
||||
"speed_print": {
|
||||
"label": "Print Speed",
|
||||
"description": "The speed at which printing happens. A well-adjusted Ultimaker can reach 150mm/s, but for good quality prints you will want to print slower. Printing speed depends on a lot of factors, so you will need to experiment with optimal settings for this.",
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 60.0,
|
||||
"visible": true,
|
||||
"children": {
|
||||
"speed_infill": {
|
||||
"label": "Infill Speed",
|
||||
"description": "The speed at which infill parts are printed. Printing the infill faster can greatly reduce printing time, but this can negatively affect print quality.",
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 100.0,
|
||||
"visible": true
|
||||
},
|
||||
"speed_topbottom": {
|
||||
"label": "Top/Bottom Speed",
|
||||
"description": "Speed at which top/bottom parts are printed. Printing the top/bottom faster can greatly reduce printing time, but this can negatively affect print quality.",
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 15.0,
|
||||
"visible": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"speed_travel": {
|
||||
"label": "Travel Speed",
|
||||
"description": "The speed at which travel moves are done. A well-built Ultimaker can reach speeds of 250mm/s. But some machines might have misaligned layers then.",
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 150.0,
|
||||
"visible": true
|
||||
},
|
||||
"speed_layer_0": {
|
||||
"label": "Bottom Layer Speed",
|
||||
"description": "The print speed for the bottom layer: You want to print the first layer slower so it sticks to the printer bed better.",
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"min_value": 0.1,
|
||||
"default": 15.0,
|
||||
"visible": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"infill": {
|
||||
"label": "Infill",
|
||||
"visible": true,
|
||||
"icon": "category_infill",
|
||||
"settings": {
|
||||
"fill_overlap": {
|
||||
"label": "Infill Overlap",
|
||||
"description": "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill.",
|
||||
"unit": "%",
|
||||
"type": "float",
|
||||
"default": 10.0
|
||||
}
|
||||
}
|
||||
},
|
||||
"cooling": {
|
||||
"label": "Cooling",
|
||||
"visible": true,
|
||||
"icon": "category_cool",
|
||||
"settings": {
|
||||
"cool_fan_enabled": {
|
||||
"label": "Enable Cooling Fan",
|
||||
"description": "Enable the cooling fan during the print. The extra cooling from the cooling fan helps parts with small cross sections that print each layer quickly.",
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"visible": true,
|
||||
"children": {
|
||||
"cool_fan_speed": {
|
||||
"label": "Fan Speed",
|
||||
"description": "Fan speed used for the print cooling fan on the printer head. Set to 0% to disable or if you do not have a cooling fan.",
|
||||
"unit": "%",
|
||||
"type": "float",
|
||||
"default": 0.0,
|
||||
"visible": true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"platform_adhesion": {
|
||||
"label": "Platform Adhesion",
|
||||
"visible": true,
|
||||
"icon": "category_adhesion",
|
||||
"settings": {
|
||||
"skirt_line_count": {
|
||||
"label": "Skirt Line Count",
|
||||
"description": "The skirt is a line drawn around the first layer of the. This helps to prime your extruder, and to see if the object fits on your platform. Setting this to 0 will disable the skirt. Multiple skirt lines can help to prime your extruder better for small objects.",
|
||||
"type": "int",
|
||||
"default": 3,
|
||||
"active_if": {
|
||||
"setting": "adhesion_type",
|
||||
"value": "None"
|
||||
}
|
||||
},
|
||||
"skirt_gap": {
|
||||
"label": "Skirt Distance",
|
||||
"description": "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance, multiple skirt lines will extend outwards from this distance.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 4.0,
|
||||
"active_if": {
|
||||
"setting": "adhesion_type",
|
||||
"value": "None"
|
||||
}
|
||||
},
|
||||
"skirt_minimal_length": {
|
||||
"label": "Skirt Minimum Length",
|
||||
"description": "The minimum length of the skirt. If this minimum length is not reached, more skirt lines will be added to reach this minimum length. Note: If the line count is set to 0 this is ignored.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 200.0,
|
||||
"active_if": {
|
||||
"setting": "adhesion_type",
|
||||
"value": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -47,6 +47,7 @@
|
||||
"machine_extruder_count": {
|
||||
"default": 1
|
||||
},
|
||||
"machine_use_extruder_offset_to_offset_coords": { "default": false },
|
||||
"extruder_nr": { "default": 0 },
|
||||
"machine_nozzle_offset_x": { "default": 0, "SEE_machine_extruder_trains": true },
|
||||
"machine_nozzle_offset_y": { "default": 0, "SEE_machine_extruder_trains": true },
|
||||
@ -1731,6 +1732,44 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"support_conical_enabled": {
|
||||
"label": "Conical Support",
|
||||
"description": "Experimental feature: Make support areas smaller at the bottom than at the overhang.",
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"visible": false,
|
||||
"active_if": {
|
||||
"setting": "support_enable",
|
||||
"value": true
|
||||
}
|
||||
},
|
||||
"support_conical_angle": {
|
||||
"label": "Cone Angle",
|
||||
"description": "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top.",
|
||||
"unit": "°",
|
||||
"type": "float",
|
||||
"min_value": -90,
|
||||
"max_value": 90,
|
||||
"default": 30,
|
||||
"visible": false,
|
||||
"active_if": {
|
||||
"setting": "support_conical_enabled",
|
||||
"value": true
|
||||
}
|
||||
},
|
||||
"support_conical_min_width": {
|
||||
"label": "Minimal Width",
|
||||
"description": "Minimal width to which conical support reduces the support areas. Small widths can cause the base of the support to not act well as fundament for support above.",
|
||||
"unit": "mm",
|
||||
"min_value": 0,
|
||||
"default": 3.0,
|
||||
"type": "float",
|
||||
"visible": false,
|
||||
"active_if": {
|
||||
"setting": "support_conical_enabled",
|
||||
"value": true
|
||||
}
|
||||
},
|
||||
"support_bottom_stair_step_height": {
|
||||
"label": "Stair Step Height",
|
||||
"description": "The height of the steps of the stair-like bottom of support resting on the model. Small steps can cause the support to be hard to remove from the top of the model.",
|
||||
@ -1751,6 +1790,14 @@
|
||||
"default": 2,
|
||||
"visible": false
|
||||
},
|
||||
"support_offset": {
|
||||
"label": "Horizontal Expansion",
|
||||
"description": "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 1.0,
|
||||
"visible": false
|
||||
},
|
||||
"support_area_smoothing": {
|
||||
"label": "Area Smoothing",
|
||||
"description": "Maximal distance in the X/Y directions of a line segment which is to be smoothed out. Ragged lines are introduced by the join distance and support bridge, which cause the machine to resonate. Smoothing the support areas won't cause them to break with the constraints, except it might change the overhang.",
|
||||
|
264
resources/settings/maker_starter.json
Normal file
264
resources/settings/maker_starter.json
Normal file
@ -0,0 +1,264 @@
|
||||
{
|
||||
"id": "maker_starter",
|
||||
"name": "3DMaker Starter",
|
||||
"icon": "icon_ultimaker2.png",
|
||||
"platform": "makerstarter_platform.stl",
|
||||
|
||||
"inherits": "fdmprinter.json",
|
||||
|
||||
"machine_settings": {
|
||||
"machine_start_gcode": {
|
||||
"default": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 Z15.0 F{travel_speed} ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F{travel_speed}\n;Put printing message on LCD screen\nM117 Printing...\nM220 S50"
|
||||
},
|
||||
"machine_end_gcode": {
|
||||
"default": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F{travel_speed} ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning"
|
||||
},
|
||||
"machine_width": { "default": 210 },
|
||||
"machine_depth": { "default": 185 },
|
||||
"machine_height": { "default": 200 },
|
||||
"machine_heated_bed": { "default": false },
|
||||
|
||||
"machine_center_is_zero": { "default": false },
|
||||
"machine_nozzle_size": { "default": 0.4 },
|
||||
"machine_head_shape_min_x": { "default": 0 },
|
||||
"machine_head_shape_min_y": { "default": 0 },
|
||||
"machine_head_shape_max_x": { "default": 0 },
|
||||
"machine_head_shape_max_y": { "default": 0 },
|
||||
"machine_nozzle_gantry_distance": { "default": 55 },
|
||||
"machine_nozzle_offset_x_1": { "default": 0.0 },
|
||||
"machine_nozzle_offset_y_1": { "default": 0.0 },
|
||||
"machine_gcode_flavor": { "default": "RepRap" },
|
||||
"machine_disallowed_areas": { "default": []},
|
||||
"machine_platform_offset": { "default": [0.0, 0.0, 0.0] },
|
||||
|
||||
"machine_nozzle_tip_outer_diameter": { "default": 1.0 },
|
||||
"machine_nozzle_head_distance": { "default": 3.0 },
|
||||
"machine_nozzle_expansion_angle": { "default": 45 }
|
||||
},
|
||||
"categories": {
|
||||
"resolution": {
|
||||
"label": "Quality",
|
||||
"visible": true,
|
||||
"icon": "category_quality",
|
||||
"settings": {
|
||||
"layer_height": {
|
||||
"default": 0.2
|
||||
},
|
||||
"layer_height_0": {
|
||||
"default": 0.2,
|
||||
"visible": false
|
||||
},
|
||||
"shell_thickness": {
|
||||
"children": {
|
||||
"wall_thickness": {
|
||||
"children": {
|
||||
"wall_line_count": {
|
||||
"default": 2,
|
||||
"visible": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"top_bottom_thickness": {
|
||||
"children": {
|
||||
"top_thickness": {
|
||||
|
||||
"children": {
|
||||
"top_layers": {
|
||||
"default": 4,
|
||||
"visible": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"bottom_thickness": {
|
||||
"children": {
|
||||
"bottom_layers": {
|
||||
"default": 4,
|
||||
"visible": true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
"material": {
|
||||
"label": "Material",
|
||||
"visible": true,
|
||||
"icon": "category_material",
|
||||
"settings": {
|
||||
"material_print_temperature": {
|
||||
"visible": false
|
||||
},
|
||||
"material_bed_temperature": {
|
||||
"visible": false
|
||||
},
|
||||
"material_diameter": {
|
||||
"default": 1.75,
|
||||
"visible": false
|
||||
},
|
||||
"material_flow": {
|
||||
"visible": false
|
||||
},
|
||||
"retraction_enable": {
|
||||
"children": {
|
||||
"retraction_hop": {
|
||||
"default": 0.2
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"speed": {
|
||||
"settings": {
|
||||
"speed_print": {
|
||||
"default": 50.0,
|
||||
"children": {
|
||||
"speed_wall": {
|
||||
"default": 30.0,
|
||||
|
||||
"children": {
|
||||
"speed_wall_0": {
|
||||
"default": 30.0
|
||||
},
|
||||
"speed_wall_x": {
|
||||
"default": 30.0
|
||||
}
|
||||
}
|
||||
},
|
||||
"speed_topbottom": {
|
||||
"default": 50.0
|
||||
},
|
||||
"speed_support": {
|
||||
"default": 50.0
|
||||
}
|
||||
}
|
||||
},
|
||||
"speed_travel": {
|
||||
"default": 120.0
|
||||
},
|
||||
"speed_layer_0": {
|
||||
"default": 20.0,
|
||||
|
||||
"children": {
|
||||
"skirt_speed": {
|
||||
"default": 15.0
|
||||
}
|
||||
}
|
||||
},
|
||||
"speed_slowdown_layers": {
|
||||
"default": 4
|
||||
}
|
||||
}
|
||||
},
|
||||
"infill": {
|
||||
"settings": {
|
||||
"fill_sparse_density": {
|
||||
"default": 20.0
|
||||
}
|
||||
}
|
||||
},
|
||||
"cooling": {
|
||||
"settings": {
|
||||
"cool_fan_enabled": {
|
||||
"children": {
|
||||
"cool_fan_speed": {
|
||||
"children": {
|
||||
"cool_fan_speed_min": {
|
||||
"default": 50.0
|
||||
},
|
||||
"cool_fan_speed_max": {
|
||||
"default": 100.0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"cool_fan_full_at_height": {
|
||||
"children": {
|
||||
"cool_fan_full_layer": {
|
||||
"default": 4,
|
||||
"visible": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"cool_min_layer_time": {
|
||||
"default": 5.0
|
||||
},
|
||||
"cool_min_layer_time_fan_speed_max": {
|
||||
"default": 10.0
|
||||
}
|
||||
}
|
||||
},
|
||||
"support": {
|
||||
"settings": {
|
||||
"support_type": {
|
||||
"default": "Everywhere"
|
||||
},
|
||||
"support_angle": {
|
||||
"default": 45.0,
|
||||
"visible": true
|
||||
},
|
||||
"support_xy_distance": {
|
||||
"default": 1
|
||||
},
|
||||
"support_z_distance": {
|
||||
"default": 0.2,
|
||||
"children": {
|
||||
"support_top_distance": {
|
||||
"default": 0.2
|
||||
},
|
||||
"support_bottom_distance": {
|
||||
"default": 0.24
|
||||
}
|
||||
}
|
||||
},
|
||||
"support_pattern": {
|
||||
"default": "ZigZag"
|
||||
},
|
||||
"support_fill_rate": {
|
||||
"default": 15,
|
||||
"visible": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"platform_adhesion": {
|
||||
"settings": {
|
||||
"adhesion_type": {
|
||||
"default": "Raft"
|
||||
},
|
||||
"skirt_minimal_length": {
|
||||
"default": 100.0
|
||||
},
|
||||
"raft_line_spacing": {
|
||||
"default": 2.0
|
||||
},
|
||||
"raft_base_thickness": {
|
||||
"default": 0.3
|
||||
},
|
||||
"raft_base_linewidth": {
|
||||
"default": 2.0
|
||||
},
|
||||
"raft_base_speed": {
|
||||
"default": 15.0
|
||||
},
|
||||
"raft_interface_thickness": {
|
||||
"default": 0.24
|
||||
},
|
||||
"raft_interface_linewidth": {
|
||||
"default": 0.6
|
||||
},
|
||||
"raft_airgap": {
|
||||
"default": 0.2
|
||||
},
|
||||
"raft_surface_layers": {
|
||||
"default": 2
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -83,6 +83,7 @@
|
||||
"machine_height": { "default": 205 },
|
||||
"machine_heated_bed": { "default": true },
|
||||
|
||||
|
||||
"machine_center_is_zero": { "default": false },
|
||||
"machine_nozzle_size": { "default": 0.4 },
|
||||
"machine_head_shape_min_x": { "default": 40 },
|
||||
@ -90,6 +91,7 @@
|
||||
"machine_head_shape_max_x": { "default": 60 },
|
||||
"machine_head_shape_max_y": { "default": 30 },
|
||||
"machine_nozzle_gantry_distance": { "default": 55 },
|
||||
"machine_use_extruder_offset_to_offset_coords": { "default": true },
|
||||
"machine_nozzle_offset_x_1": { "default": 18.0 },
|
||||
"machine_nozzle_offset_y_1": { "default": 0.0 },
|
||||
"machine_gcode_flavor": { "default": "UltiGCode" },
|
||||
|
@ -91,6 +91,7 @@
|
||||
"machine_head_shape_max_x": { "default": 18 },
|
||||
"machine_head_shape_max_y": { "default": 35 },
|
||||
"machine_nozzle_gantry_distance": { "default": 55 },
|
||||
"machine_use_extruder_offset_to_offset_coords": { "default": true },
|
||||
"machine_nozzle_offset_x_1": { "default": 18.0 },
|
||||
"machine_nozzle_offset_y_1": { "default": 0.0 },
|
||||
"machine_gcode_flavor": { "default": "RepRap (Marlin/Sprinter)" },
|
||||
|
Loading…
x
Reference in New Issue
Block a user