Le end.gcode
Définition :
Le end.gcode répond au start.gcode présent au tout début du fichier. C'est en fait le dernier paragraphe. Son rôle est de clôturer correctement l'impression et d'amener l'imprimante à s'éteindre (ou se mettre "en veille") progressivement et en toute sécurité. On y retrouve en fait les versions "off" des lignes de commandes du start.gcode.
Le end.gcode est directement accessible et modifiable dans le slicer.
End.gcode Witbox
Dans le slicer | Dans le fichier Gcode | |
---|---|---|
1 | ; -- END GCODE -- | ; -- END GCODE -- |
2 | M104 S0 ;extruder heater off | M104 S0 ;extruder heater off |
3 | G91 ;relative positioning | G91 ;relative positioning |
4 | G1 E-20 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure | G1 E-20 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure |
5 | G90 ;absolute positioning | G90 ;absolute positioning |
6 | G1 Z200 F{travel_speed} ;move Z up a bit and retract filament even more | G1 Z200 F7800 ;move Z up a bit and retract filament even more |
7 | G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way | G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way |
8 | M84 ;steppers off | M84 ;steppers off |
9 | ; -- end of END GCODE -- | ; -- end of END GCODE -- |
On a déjà vu toutes ces commandes : Les principales commandes !