我有一个 Monoprice 架构师,它是 FlashForge Creator Pro 或 Replicator 1 Dual 的准系统克隆。我升级了电源并添加了一个加热床,在厌倦了 MakerBot 软件之后,我开始使用 Cura 进行切片,然后使用 GPX 进行后期处理。
我进行了大量搜索,终于找到了发布此特定打印机的开始和结束 G 代码的人。唯一的问题是他的代码仅适用于 15.04 版。
不要误会我的意思,与 MakerWare 相比,15.04 是一个巨大的升级。但是,我真的很想开始使用较新的版本,例如 2.5 或任何相对较新的版本。
这是我找到的启动代码。我在 2.5 中尝试过,但在后期处理中出错。任何帮助表示赞赏!
; -- START GCODE --
M136 ; start build
M73 P0
G90 ; absolute coordinates
;
; set temperatures and assert Vref
M140 S{print_bed_temperature}
M104 S{print_temperature} T0
G130 X118 Y118 A118 B118 ; set stepper motor Vref to defaults
; let the Z stepper vref stay at eeprom level (probably 40)
;
; home and recall eeprom home position
T0 ; home on the right nozzle
G28 X Y Z ; home all axes at homing speed
G92 X0 Y0 Z0 A0 B0 ; set all coords to 0 for now
G1 Z5 F500 ; move Z 5mm away so we can carefully hit the limit switch
G161 Z F100 ; home Z slowly
M132 X Y Z ; recall stored home offsets for XYZ axes
;
; wait for heat up
G1 X110 Y-72 Z30 F3300 ; move to waiting position
M116 ; wait for temps
;
; purge and wipe
G92 E0 ; set current extruder position as 0 so that E15 below makes sense
G1 X110 Y-70 Z0.2 F2400.0 ; move to just on the bed
G1 X110 Y70 E15 F1200.000 ; extrude a line of filament along the right edge of the bed
G92 E0 ; set E to 0 again because the slicer's next extrusion is relative to this 0
;
; Sliced at: {day} {date} {time}
; Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density}
; Print time: {print_time}
; Filament used: {filament_amount}m {filament_weight}g
; Filament cost: {filament_cost}
; -- end of START GCODE --