Multi nozzle/layer pt 1

Baseline and first layer working. Retraction code testing, new STL needed.
This commit is contained in:
lawgicau
2021-07-06 20:23:34 +10:00
parent b23c48cecb
commit 80ec6f0f18
9 changed files with 5533 additions and 5075 deletions

21
js/commongcode.js Normal file
View File

@ -0,0 +1,21 @@
var commonStart =`; G-Code originally generated by Simplify3D(R) Version 4.1.2
This calibration test gcode modified by the Teaching Tech Calibration website: https://teachingtechyt.github.io/calibration.html
;M80 ; power supply on
G90
M82
M106 S0
M140 S60
M190 S60
M104 S210 T0
M109 S210 T0
G28 ; home all axes
;G29 ; probe ABL
;M420 S1 ; restore ABL mesh
;customstart
G0 Z1; fix for delta printers that home at max`;
var commonEnd = `G28 X0 ; home X axis
M106 S0 ; turn off cooling fan
M104 S0 ; turn off extruder
M140 S0 ; turn off bed
M84 ; disable motors`