Hey Guys,
So im investigating the issue when I export a Gcode file from Easel, When I run it using my Gcode streamer (CNCjs) after homing, I press play and it raises the bit (3.8mm) then moves to the starting location and lowers the bit (1.5mm)
and starts carving making it 2.3mm above the work surface. If I remove the offending like (line 3) and raise manually and press play everything works, I guess i;m confused why Easel doesn’t lower the bit 3.8mm after it reaches the starting position?
Cheers Rob.
G21 <== Programming in millimeters (mm)
G90 <== Absolute Positioning
G1 Z3.800 F228.6 <== Raise Z Axis 3.8mm at a feed rate of 228.6
G0 X109.232 Y3.159 <=== Move X & Y to Starting Location
G1 Z-1.500 F80.0 <== Lower Z Axis 1.5mm at a feed rate of 80
G1 X109.623 Y3.221 F500.0 <== Start Program
…
…
MANY COMMANDS
…
…
G21 < == Programming in millimeters (mm)
G90 <== Absolute Positioning
G1 Z3.800 F80.0 <== Raise Z Axis 3.8mm at a feed rate of 228.6
G0 X0.000 Y0.000 <== Return X & Y Home
G4 P0.1 <== Pause for 0.1 Second