Want to try Kisslicer 1.6.3, need config for Delta
-
Good evening I have spent the better part of two hours searching the web for a starting point.
I am getting the dreaded:
Error: G0/G1: insufficient axes homed
If someone has one of Dave's Meter Deltas like I do, please share your Kisslicer configuration.
-
Did you home the printer before starting the print, or else have a G28 command in your slicer start GCode?
-
Yes, It did put it in the gcode file. I didn't do a fresh install of 1.6.3.
; Home the axes
G28
; Wait till the Bed is heated
M190 S110 -
Okay, fresh install, this is the error code.
Cancelled printing file 0:/gcodes/G5 Cap FDM.gcode, print time was 0h 0m
Error: G0/G1: target position not reachable from current position -
Try moving down in Z after the G28 command. My guess is that the first movement command in the GCode file is moving the head in X and Y but not Z.
-
Okay, found a simple solution. Changed the following settings.
Under:
Profile settings - Printer G-code - Select New Ext & Warm:
From:
; Head to the start of the next path
G1 X<NEXTX> Y<NEXTY> F6000To:
; Head to the start of the next path
G1 X<NEXTX> Y<NEXTY> Z50 F6000Under:
Profile settings - Printer G-code - Warm Same Ext:
From:
; Move to the start of the next path
G1 X<NEXTX> Y<NEXTY> F6000To:
; Move to the start of the next path
G1 X<NEXTX> Y<NEXTY> Z50 F6000