Homing troble
-
Here is my config.g and homedelta.g when i try to home all motors move but only about 10mm or so
The endstops seem right m119 shows low stop and when triggered show high stop for got the exact wordingIf i enter gcode to move x50 and them x-50 also do both in the y direction they moved fine
just seems to be going to home its moving in the right direction when i home only in shot spurts
so i figure i have something configured wrong
Just setup the duet and fist attempt at homing I assume with delta it should be triggered at high end stops
Thanks gary
; Configuration file for Duet WiFi (firmware version 1.20 or newer)
; executed by the firmware on start-up
;
; generated by RepRapFirmware Configuration Tool on Sun Mar 25 2018 16:56:23 GMT-0400 (Eastern Daylight Time); General preferences
G90 ; Send absolute coordinates…
M83 ; ...but relative extruder moves
M665 R105.6 L288 B85 H315 ; Set delta radius, diagonal rod length, printable radius and homed height
M666 X0 Y0 Z0 ; Put your endstop adjustments here, or let auto calibration find them; Network
M550 PGarys Kossel ; Set machine name
M551 Pgorf ; Set password
M552 S1 ; Enable network
;*** Access point is configured manually via M587
M586 P0 S1 ; Enable HTTP
M586 P1 S0 ; Disable FTP
M586 P2 S0 ; Disable Telnet; 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
M350 X32 Y32 Z32 E32 I0 ; Configure microstepping without interpolation
M92 X200 Y200 Z200 E175 ; Set steps per mm
M566 X1200 Y1200 Z1200 E1200 ; Set maximum instantaneous speed changes (mm/min)
M203 X18000 Y18000 Z18000 E1200 ; Set maximum speeds (mm/min)
M201 X1000 Y1000 Z1000 E1000 ; Set accelerations (mm/s^2)
M906 X1800 Y1800 Z1800 E1800 I30 ; Set motor currents (mA) and motor idle factor in per cent
M84 S30 ; Set idle timeout; Axis Limits
M208 Z0 S1 ; Set minimum Z; Endstops
M574 X1 Y1 Z1 S1 ; Set active low endstops; Z-Probe
M307 H3 A-1 C-1 D-1
M558 P2 H5 F120 T6000 ; Set Z probe type to modulated and the dive height + speeds
G31 P25 X5 Y20 Z5.0 ; Set Z probe trigger value, offset and trigger height
M557 R85 S20 ; Define mesh grid; Heaters
M305 P0 T100000 B4138 C0 R4700 ; Set thermistor + ADC parameters for heater 0
M143 H0 S120 ; Set temperature limit for heater 0 to 120C
M305 P1 T100000 B4138 C0 R4700 ; Set thermistor + ADC parameters for heater 1
M143 H1 S280 ; Set temperature limit for heater 1 to 280C; Fans
M106 P0 S1 I0 F500 H-1 ; Set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
M106 P1 S1 I0 F500 H1 T45 ; Set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on
M106 P2 S1 I0 F500 H1 T45 ; Set fan 2 value, PWM signal inversion and frequency. Thermostatic control is turned on; Tools
M563 P0 D0 H1 ; Define tool 0
G10 P0 X0 Y0 Z0 ; Set tool 0 axis offsets
G10 P0 R0 S0 ; Set initial tool 0 active and standby temperatures to 0C; Automatic saving after power loss is not enabled
; Custom settings are not configured
; homedelta.g
; called to home all towers on a delta printer
;
; generated by RepRapFirmware Configuration Tool on Sun Mar 25 2018 16:56:23 GMT-0400 (Eastern Daylight Time)
G91 ; relative positioning
G1 S1 X322 Y322 Z322 F1800 ; move all towers to the high end stopping at the endstops (first pass)
G1 X-5 Y-5 Z-5 F1800 S2 ; go down a few mm
G1 S1 X10 Y10 Z10 F360 ; move all towers up once more (second pass)
G1 Z-5 F6000 ; move down a few mm so that the nozzle can be centred
G90 ; absolute positioning
G1 X0 Y0 F6000 ; move X+Y to the centre -
-
I tried setting M574 to x0 y0 z0 also x1 y1 z1 same results homes only 10mm when i make the changes they show up with m119
as the reverse to what was m119 showed before the change
the positon display on the duetweb shows x0.0 y0.0 z285.00 if i home all or g28 it shows x0.0 y0.0 z270.00Gary
-
could the motors be reversed even thought they are moving toward the top end stops just thinking and the output went from 285 to 270 if homing on delta shouldn't the values be getting higher not lower?
Gary
-
got it working had to set m574 x2 y2 z 2 s0
then reverse the motor direction it homed fine hit endstops backed up and went up again and stoped
so i think i got over this problem on to the next one..Thanks gary