Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion js/commongcode.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ G28 ; home all axes
;G29 ; probe ABL
;M420 S1 ; restore ABL mesh
;customstart
G92 E0.0 ; set current extruder position as 0
G90 ; set all axes back to absolute mode
M82 ; set extruder back to absolute mode ; required for newer RepRapFirmware revisions
G0 Z3; fix for delta printers that home at max`;

var commonEnd = `
Expand All @@ -22,4 +25,4 @@ M140 S0 ; turn off bed
M84 ; disable motors
M501 ; restore previous EEPROM values
;customend
`;
`;