@mikeabuilder Thanks
Latest posts made by zorbega
-
RE: Error: in file macro line 22: M280: insufficient axes homed
@dc42 This error showed up after correcting the x-homing position. printer subject printed in mirror and i fixed this but when i am trying to print, shows this error
-
RE: Error: in file macro line 22: M280: insufficient axes homed
@zorbega this is my home all
; homeall.g
; called to home all axes
;
; generated by RepRapFirmware Configuration Tool v3.5.4 on Mon Aug 05 2024 02:40:56 GMT+0400 (Georgia Standard Time); increase Z
G91 ; relative positioning
G1 H2 Z5 F6000 ; move Z relative to current position to avoid dragging nozzle over the bed
G90 ; absolute positioning; home XY
var xTravel = move.axes[0].max - move.axes[0].min + 5 ; calculate how far X can travel plus 5mm
var yTravel = move.axes[1].max - move.axes[1].min + 5 ; calculate how far Y can travel plus 5mm
G91 ; relative positioning
G1 H1 X{var.xTravel} Y{-var.yTravel} F1200
G90 ; absolute positioning; home Z
; NOTE: The following XY coordinates use values from the probe grid defined in the next section
var xCenter = move.compensation.probeGrid.mins[0] + (move.compensation.probeGrid.maxs[0] - move.compensation.probeGrid.mins[0]) / 2 - sensors.probes[0].offsets[0]
var yCenter = move.compensation.probeGrid.mins[1] + (move.compensation.probeGrid.maxs[1] - move.compensation.probeGrid.mins[1]) / 2 - sensors.probes[0].offsets[1]
(LINE22) G1 X{var.xCenter} Y{var.yCenter} F6000 ; go to bed centre
G30 ; probe the bed -
RE: Error: in file macro line 22: M280: insufficient axes homed
@dc42 I am using core xy. when i using home all , after home z shows this error
-
Error: in file macro line 22: M280: insufficient axes homed
Hi,
I'm getting this error when i call home allWhen I call speartly, x, y, and z work fine, but when I call all, I get this error. If you have any ideas, I would be happy to try them.
; homeall.g
; called to home all axes
;
; generated by RepRapFirmware Configuration Tool v3.5.4 on Mon Aug 05 2024 02:40:56 GMT+0400 (Georgia Standard Time); increase Z
G91 ; relative positioning
G1 H2 Z5 F6000 ; move Z relative to current position to avoid dragging nozzle over the bed
G90 ; absolute positioning; home XY
var xTravel = move.axes[0].max - move.axes[0].min + 5 ; calculate how far X can travel plus 5mm
var yTravel = move.axes[1].max - move.axes[1].min + 5 ; calculate how far Y can travel plus 5mm
G91 ; relative positioning
G1 H1 X{var.xTravel} Y{-var.yTravel} F1200
G90 ; absolute positioning; home Z
; NOTE: The following XY coordinates use values from the probe grid defined in the next section
var xCenter = move.compensation.probeGrid.mins[0] + (move.compensation.probeGrid.maxs[0] - move.compensation.probeGrid.mins[0]) / 2 - sensors.probes[0].offsets[0]
var yCenter = move.compensation.probeGrid.mins[1] + (move.compensation.probeGrid.maxs[1] - move.compensation.probeGrid.mins[1]) / 2 - sensors.probes[0].offsets[1]
G1 X{var.xCenter} Y{var.yCenter} F6000 ; go to bed centre
G30 ; probe the bed -
RE: The Last Creality CR-Touch thread (how I got it to work)
@sonderzug Hi I have the same cr touch and LC board, wiring is correct but it shows Error: "G30: Probe was not triggered during probing move." Can you send me full configuration?