add default ender 3 and ender 5 profiles
This commit is contained in:
parent
8b7fa6ebab
commit
4dfa17f4ef
3 changed files with 85 additions and 4 deletions
|
|
@ -30,15 +30,13 @@
|
||||||
"filament": 1.75,
|
"filament": 1.75,
|
||||||
"offset_x": 0,
|
"offset_x": 0,
|
||||||
"offset_y": 0,
|
"offset_y": 0,
|
||||||
"select": [ "T0" ],
|
"select": [ "T0" ]
|
||||||
"deselect": []
|
|
||||||
},{
|
},{
|
||||||
"nozzle": 0.4,
|
"nozzle": 0.4,
|
||||||
"filament": 1.75,
|
"filament": 1.75,
|
||||||
"offset_x": 30,
|
"offset_x": 30,
|
||||||
"offset_y": 0,
|
"offset_y": 0,
|
||||||
"select": [ "T1" ],
|
"select": [ "T1" ]
|
||||||
"deselect": []
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"cmd":{
|
"cmd":{
|
||||||
|
|
|
||||||
43
web/kiri/filter/FDM/Creality.Ender.3
Normal file
43
web/kiri/filter/FDM/Creality.Ender.3
Normal file
|
|
@ -0,0 +1,43 @@
|
||||||
|
{
|
||||||
|
"pre":[
|
||||||
|
"M107 ; turn off filament cooling fan",
|
||||||
|
"G90 ; set absolute positioning mode",
|
||||||
|
"M82 ; set absolute positioning for extruder",
|
||||||
|
"M104 S{temp} T{tool} ; set extruder temperature",
|
||||||
|
"M140 S{bed_temp} T{tool} ; set bed temperature",
|
||||||
|
"G28 ; home axes",
|
||||||
|
"G92 X0 Y0 Z0 E0 ; reset all axes positions",
|
||||||
|
"G1 X0 Y0 Z0.25 F180 ; move XY to 0,0 and Z 0.25mm over bed",
|
||||||
|
"G92 E0 ; zero the extruded",
|
||||||
|
"M190 S{bed_temp} T{tool} ; wait for bed to reach target temp",
|
||||||
|
"M109 S{temp} T{tool} ; wait for extruder to reach target temp",
|
||||||
|
"G92 E0 ; zero the extruded",
|
||||||
|
"G1 F225 ; set feed speed"
|
||||||
|
],
|
||||||
|
"post":[
|
||||||
|
"M107 ; turn off filament cooling fan",
|
||||||
|
"M104 S0 T{tool} ; turn off right extruder",
|
||||||
|
"M140 S0 T{tool} ; turn off bed",
|
||||||
|
"G1 X0 Y300 F1200 ; end move",
|
||||||
|
"M84 ; disable stepper motors"
|
||||||
|
],
|
||||||
|
"extruders":[
|
||||||
|
{
|
||||||
|
"nozzle": 0.4,
|
||||||
|
"filament": 1.75,
|
||||||
|
"offset_x": 0,
|
||||||
|
"offset_y": 0,
|
||||||
|
"select": [ "T0" ]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"cmd":{
|
||||||
|
"fan_power": "M106 S{fan_speed}"
|
||||||
|
},
|
||||||
|
"settings":{
|
||||||
|
"origin_center": false,
|
||||||
|
"extrude_abs": true,
|
||||||
|
"bed_width": 220,
|
||||||
|
"bed_depth": 220,
|
||||||
|
"build_height": 300
|
||||||
|
}
|
||||||
|
}
|
||||||
40
web/kiri/filter/FDM/Creality.Ender.5
Normal file
40
web/kiri/filter/FDM/Creality.Ender.5
Normal file
|
|
@ -0,0 +1,40 @@
|
||||||
|
{
|
||||||
|
"pre":[
|
||||||
|
"G28 X ; home X",
|
||||||
|
"M107 ; turn off filament cooling fan",
|
||||||
|
"M104 S{temp} T{tool} ; set extruder temperature",
|
||||||
|
"M140 S{bed_temp} T{tool} ; set bed temperature",
|
||||||
|
"M109 S{temp} T{tool} ; wait for extruder to reach target temp",
|
||||||
|
"M190 S{bed_temp} T{tool} ; wait for bed to reach target temp",
|
||||||
|
"G90 ; set absolute positioning mode",
|
||||||
|
"M82 ; set absolute positioning for extruder",
|
||||||
|
"G28 ; home axes",
|
||||||
|
"G1 X220 Y220 Z0.25 F180 ; move XY to 0,0 and Z 0.25mm over bed"
|
||||||
|
],
|
||||||
|
"post":[
|
||||||
|
"M107 ; turn off filament cooling fan",
|
||||||
|
"M104 S0 T{tool} ; turn off right extruder",
|
||||||
|
"M140 S0 T{tool} ; turn off bed",
|
||||||
|
"G1 X0 Y300 F1200 ; end move",
|
||||||
|
"M84 ; disable stepper motors"
|
||||||
|
],
|
||||||
|
"extruders":[
|
||||||
|
{
|
||||||
|
"nozzle": 0.4,
|
||||||
|
"filament": 1.75,
|
||||||
|
"offset_x": 0,
|
||||||
|
"offset_y": 0,
|
||||||
|
"select": [ "T0" ]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"cmd":{
|
||||||
|
"fan_power": "M106 S{fan_speed}"
|
||||||
|
},
|
||||||
|
"settings":{
|
||||||
|
"origin_center": false,
|
||||||
|
"extrude_abs": true,
|
||||||
|
"bed_width": 220,
|
||||||
|
"bed_depth": 220,
|
||||||
|
"build_height": 300
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue