Z-Axis Endstop Faults
-
My Z-axis endstop is failing to enable when I home Z, despite a basic setup. I'm not sure what I'm missing, hopefully, y'all can help me!
----Config----
; Configuration file for Duet WiFi (firmware version 3.3) ; executed by the firmware on start-up ; ; generated by RepRapFirmware Configuration Tool v3.3.15 on Sat Mar 11 2023 19:54:11 GMT-0500 (Eastern Standard Time) ; General preferences G90 ; send absolute coordinates... M83 ; ...but relative extruder moves M550 P"Jacks CNC Router" ; set printer name ; Network M552 S1 ; enable network M586 P0 S1 ; enable HTTP M586 P1 S0 ; disable FTP M586 P2 S0 ; disable Telnet ; Drives M569 P0 S1 ; physical drive 0 goes backwards (X based on PCB) M569 P1 S0 ; physical drive 1 goes forwards (Y based on PCB) M569 P2 S0 ; physical drive 2 goes forwards (Z based on PCB) M569 P4 S1 ;physical drive 4 goes forward M584 X0 Y1:4 Z2 ; set drive mapping M350 X16 Y16 Z16 I1 ; configure microstepping with interpolation M92 X80.00 Y80.00 Z400.00 ; set steps per mm M566 X900.00 Y900.00 Z60.00 ; set maximum instantaneous speed changes (mm/min) M203 X6000.00 Y6000.00 Z180.00 ; set maximum speeds (mm/min) M201 X500.00 Y500.00 Z20.00 ; set accelerations (mm/s^2) M906 X800 Y800 Z800 I30 ; set motor currents (mA) and motor idle factor in per cent M84 S30 ; Set idle timeout ; Axis Limits M208 X0 Y0 Z0 S1 ; set axis minima M208 X372 Y508 Z200 S0 ; set axis maxima ; Endstops M574 X1 S1 P"xstop" ; configure switch-type (e.g. microswitch) endstop for low end on X via pin xstop M574 Y1 S1 P"ystop+e1stop" ; configure switch-type (e.g. microswitch) endstop for low end on Y via pin ystop and e1stop M574 Z1 S2 P"zstop" ; configure switch-type (e.g. microswitch) endstop for high end on Z via pin zstop ; Z-Probe M558 P0 H5 F120 T6000 ; disable Z probe but set dive height, probe speed and travel speed ; Heaters M140 H-1 ; disable heated bed (overrides default heater mapping) ; Fans ; Tools M950 P3 C"exp.heater3" Q500 ; allocate GPIO port 3 to gpio 4 on Duex, 500Hz M42 P3 S1 ;start with it off G10 P0 X50.11 Y111.08 ; Custom settings are not defined M501 T0
-----homez.g-----
; homez.g G91 ; relative positioning G1 H1 Z20 F1800 ; move Z up until the endstop is triggered G1 H2 Z-5 F900 ; go back a few mm G1 H1 Z20 F900 ; move slowly to Z axis endstop once more (second pass) G90 ; absolute positioning
-
@JRCL said in Z-Axis Endstop Faults:
M574 Z1 S2 P"zstop"
This is wrong and should be
M574 Z2 S1 P"zstop
-
@jay_s_uk Whoops! Swapped my Z-value and S-value, thanks a ton
-
undefined Phaedrux marked this topic as a question
-
undefined Phaedrux has marked this topic as solved