Z end stops
-
Ok I am building a corexy with a fixed build plate and 3 z steppers driving the gantry independently. how do I get the end stop switches placed at the top of the z towers to stop the z+ movement. it just runs straight through them.
; Configuration file for Duet WiFi (firmware version 1.17)
; executed by the firmware on start-up
;
; generated by RepRapFirmware Configuration Tool on Sat Sep 02 2017 15:26:26 GMT-0400 (Eastern Daylight Time); General preferences
M111 S0 ; Debugging off
G21 ; Work in millimetres
G90 ; Send absolute coordinates…
M83 ; ...but relative extruder moves
M555 P2 ; Set firmware compatibility to look like MarlinM667 S1 ; Select CoreXY mode
M208 X0 Y0 Z0 S1 ; Set axis minima
M208 X610 Y610 Z780 S0 ; Set axis maxima; Endstops
M574 X1 Y2 Z2 S1 ; Define active high microswitches
M558 P1 X0 Y0 Z0 H5 F120 T6000 ; Set Z probe type to unmodulated, the axes for which it is used and the probe + travel speeds
G31 P400 X0 Y0 Z2.5 ; Set Z probe trigger value, offset and trigger height
M557 X20:590 Y20:590 S20 ; Define mesh grid; Drives
M569 P0 S1 ; Drive 0 goes forwards
M569 P1 S1 ; Drive 1 goes forwards
M569 P2 S1 ; Drive 2 goes forwards
M569 P3 S1 ; Drive 3 goes forwards
M569 P4 S1 ; Drive 4 goes forwards
m584 x0 y1 z2:8:9 E3:4:5:6:7
M350 X32 Y32 Z32 E16:16 I0 ; Configure microstepping without interpolation
M92 X160 Y160 Z8000 E410:410 ; Set steps per mm
M566 X900 Y900 Z12 E120:120 ; Set maximum instantaneous speed changes (mm/min)
M203 X6000 Y6000 Z180 E1200:1200 ; Set maximum speeds (mm/min)
M201 X500 Y20 Z250:250:250 E250:250 ; Set accelerations (mm/s^2)
M906 X2000 Y2000 Z2000 E800:800 I30 ; Set motor currents (mA) and motor idle factor in per cent
M84 S30 ; Set idle timeout; Heaters
M143 S300 ; Set maximum heater temperature to 300C
M301 H0 S1.00 P10 I0.1 D200 T0.4 W180 B30 ; Use PID on bed heater (may require further tuning)
M305 P0 T100000 B4138 C0 R4700 ; Set thermistor + ADC parameters for heater 0
M305 P1 T100000 B4725 C7.060000e-8 R4700 ; Set thermistor + ADC parameters for heater 1
M305 P2 T100000 B4725 C7.060000e-8 R4700 ; Set thermistor + ADC parameters for heater 2; Tools
M563 P0 D0 H1 ; Define tool 0
G10 P0 X0 Y40 Z0 ; Set tool 0 axis offsets
G10 P0 R0 S0 ; Set initial tool 0 active and standby temperatures to 0C
M563 P1 D1 H2 ; Define tool 1
G10 P1 X0 Y-40 Z0 ; Set tool 1 axis offsets
G10 P1 R0 S0 ; Set initial tool 1 active and standby temperatures to 0C; Network
M550 PMJ 30 ; Set machine name
M552 S1 ; Enable network
; Access point is configured manually via M587 by the user
M586 P0 S1 ; Enable HTTP
M586 P1 S0 ; Disable FTP
M586 P2 S0 ; Disable Telnet; Fans
M106 P0 S0.3 I0 F500 H-1 ; Set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
M106 P1 S1 I0 F500 H1:2 T45 ; Set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on
M106 P2 S1 I0 F500 H1:2 T45 ; Set fan 2 value, PWM signal inversion and frequency. Thermostatic control is turned on; Custom settings are not configured
-
M574 X1 Y2 Z2 S1 ; Define active high microswitches
That line defines the type of end stop switches you are using. Check the Wiki for your type and which settings to use.
-
I just need to get it to home up to the max endstops and use the probe just for bed leveling. I am not good with any of this stuff so learning as I go.
-
ok changed homez to this and it is working but one switch
kills all 3 z motors so the do not level the 3 independent screws.
how do i get them to react independantly?
G91 ; relative modeG1 Z810 F200 S1 ; move up to 810mm in the +Z direction, stopping if the homing switch is triggered
G1 Z-2 F50 ; move slowly 2mm in the -Z direction
G1 Z10 S1 ; move slowly 10mm in the +Z direction, stopping at the homing switch -
Your homing file won't change bed leveling. Your Bed file will. You will need to define your probe being used for bed leveling and put that into your Bed file. If everything is done right, telling the Duet where your lead screws are located, and having it probe those locations, it will adjust accordingly after clicking on Auto Calibration or typing in G32. I don't have a setup like yours, so I can't give you an exact how to, but I can hopefully lead you in the right direction.
-
Thanks for the help. I am new to this all. I am coming from delta and repeater firmware. so it is not even close to what I am used to.bed and hot ends go in this week so hopefully by Saturday I can get a first print. I also need to find a way to adjust the timing on the leadscrews. I think they are off from about 5-10mm from each other. that will level everything out.