Enable endstops on a Duex5
-
Okay I have X homing as it should!
Y is homing in the wrong direction even though I did set it to low. Tried o change it to high incase there was a bug or something but it didnt work… It however stops if I put a screwdriver on the sensor so the sensor is communicating to the board correctly.. Its just the motor homing in the wrong direction despite being configurated as below.
; Endstops
M574 X1 Y1 Z1 S0 ; Define active low and unused microswitches
;M558 P2 X0 Y0 Z0 H5 F120 T6000 ; Set Z probe type to modulated, the axes for which it is used and the probe + travel speeds
;G31 P600 X0 Y0 Z2.5 ; Set Z probe trigger value, offset and trigger height
;M557 X15:355 Y15:235 S20 ; Define mesh gridZ does not stop with any metal on it but it still lights up on the board.
Firmware Name: RepRapFirmware for Duet WiFi
Firmware Electronics: Duet WiFi 1.0 + DueX5
Firmware Version: 1.17c (2017-01-14)
WiFi Server Version: 1.03 (ch fork)
Web Interface Version: 1.14a -
Updated to 1.17e with no differance on homing
-
Y homing sorted out… works.
Now trying to fix Z
-
I would like to see how a Homez.g for a carthesian without probe looks like… Mine has a probe setting. Can anyone post one?
-
Did you read these yet
https://duet3d.com/wiki/Configuring_RepRapFirmware_for_a_Cartesian_printer#Homing_files
If you home Z using a microswitch instead, then you can use a pattern similar to homex,g and homey.g. However, if you use a low-end homing switch that triggers a little before Z=0, then you can't use M208 to define the homing position, because it would prevent you moving below the trigger height. You can use a G92 command after homing instead. Here is an example, for the case where you have a low-end homing switch that triggers at Z=0.3mm:
G91 ; relative mode
G1 Z4 F200 ; raise head 4mm to ensure it is above the switch trigger height
G90 ; back to absolute mode
G1 X0 Y0 F2000 ; put head wherever you want it to be when you home Z (omit this line if it doesn't matter)
G91 ; relative mode
G1 Z-200 S1 F100 ; move Z down until the switch triggers
G90 ; back to absolute mode
G92 Z0.3 ; tell the firmware that we are at Z=0.3mm -
Seems like the configurator is putting out the wrong content, it does put out probe in homez even if probe was deselected.
Will read that link thanks, have a homez based on Y content now as a start and it works…
Just trying to understand how the files are built up and relates. -
I think I have it all figured out now.
Thanks for any assistance given. Im sure I will find something more to ask about within short.
-
Just like to remind DC42 to look at the error of the Duet 3.3v endstops signal and ground is not correct on schematic.. they need to switch place.
Configurator outputs probe even if probe in homez was deselected.
-
Just like to remind DC42 to look at the error of the Duet 3.3v endstops signal and ground is not correct on schematic.. they need to switch place.
Please provide a link to the particular diagram that you believe is wrong, and confirm whether you have a blue production board or a white pre-production board.
Configurator outputs probe even if probe in homez was deselected.
Thanks for that report. I'll check it out.
-
https://duet3d.com/wiki/Duet_WiFi_wiring_diagrams
My board is a 1.01
-
My mistake, too tired when I did it. Schematic is ok.
-
What is the status of rempping limits switche?
Asking as I'm using the last 2 drivers on Duex5 for my Z-axis motors. I have a limit-switch for each of these motors I want to use to sync the motors.
But either the remapping doesn't work, or i'm doing something wrong?
I tried defining the "old" Z as Extruder, just to see if that would change anything, but it didn'tRight now the Z-endstop is just telling me it is triggered.
M119 Endstops - X: at min stop, Y: at min stop, Z: at max stop, Z probe: not stopped
My Config
; Endstops M574 X1 Y1 Z2 S1 ; 1=min end. 2=high end. S1=Normally Closed ; Define Drives ; Motor remapping for dual Z M584 X0 Y1 Z8:9 E3:4:5:6:7:2 ; Driver 0 For X, 1 for Y, Extruder 3-7, Z 8-9 + individually as UV [b]My config:[/b] ; Physical Drive conention M569 P0 S1 ; Drive 0 A M569 P1 S0 ; Drive 1 B M569 P2 S0 ; Drive 2 - Original Z - unused M569 P3 S0 ; Extruder0 - Physical Tool 0 M569 P4 S0 ; Extruder1 - Physical Tool 1 M569 P5 S0 ; Extruder2 - Physical Tool 2 M569 P6 S0 ; Extruder3 - Physical Tool 3 M569 P7 S0 ; Extruder4 - Physical Tool 4 M569 P8 S0 ; Drive 8 - Left z-motor M569 P9 S0 ; Drive 9 - Right z-motor
-
You need to create the U and V axes in M584 to get the U and V endstops to show up, and they will use the E0 and E1 endstop connectors on the Duet.