Extruder motor shutters but doesnt really turn
-
When I try to activate my Extruder motor just to test it. Its just makes noise and shutters. I've heated the hot end up to 200. This motor is different then the rest on my printer so following their color scheme for the wiring is not necessarily the same. The motor I have is 17HS10-0704S. I was not able to find a wiring diagram for it on google so I am hoping some one on here will have an idea. Maybe its something in my config file as well not sure. I will post it just to make sure:
Thank you; 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 Marlin
M208 X365 Y250 Z295 S0 ; Set axis maxima; Endstops
M574 X1 Y1 Z1 S0 ; Define active low and unused microswitches
M307 H3 A-1 C-1 D-1 ;M558 P5 X0 Y0 Z1 H5 F100 T2000
G31 X-43 Y0 Z1.75 P25
M557 X15:365 Y15:250 S68 ; Define mesh grid
; Drives
M584 X0 Y1 Z2 E3
M569 P0 S1 ; Drive 0 goes forwards - X
M569 P1 S0 ; Drive 1 goes backwards - Y
M569 P2 S0 ; Drive 2 goes backwards - Z
M569 P3 S1 ; Drive 3 goes forwards - ExtruderM350 X16 Y16 Z16 E16 I1 ; Configure microstepping with interpolation 16
M92 X80 Y80 Z1600 E800 ; Set steps per mm 16
M566 X600 Y600 Z12 E120 ; Set maximum instantaneous speed changes (mm/min) - (JERK)
M203 X6000 Y6000 Z500 E400 ; Set maximum speeds (mm/min)
M201 X1000 Y1000 Z1000 E250 ; Set accelerations (mm/s^2)
M204 P1000 T1000 ; Set Max acceleration for P=printing moves and T=travel moves
M906 X1600 Y1600 Z900 E1000 I30 ; Set motor currents (mA) and motor idle factor in per cent
M84 S30 ; Set idle timeout; Heaters
M305 P0 T99600 B4388 C0 R4700 ; Set thermistor + ADC parameters for heater 1 - HOTEND E3d
M143 H0 S120 ; Set temperature limit for heater 0 to 120C
M305 P1 T100000 B4725 C7.060000e-8 R4700 ; Set thermistor + ADC parameters for heater 1
M143 H1 S280 ; Set temperature limit for heater 1 to 280C
M307 H1 A340.0 C140.0 D5.5 B0 ;Hotend E3d pid; 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; Network
M550 PRodriguez Black Widow ; Set machine name
M552 S1 ; Enable network
M587 S"RCMP Surveillance" P"241428433" ; Configure access point. You can delete this line once connected
M586 P0 S1 ; Enable HTTP
M586 P1 S0 ; Disable FTP
M586 P2 S0 ; Disable Telnet; Fans
M106 P0 S0 I0 F500 H-1 ; Set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned offM106 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
; Custom settings are not configured
-
The first thing to do is power off the Duet, disconnect the stepper motor from the Duet and check that it is phased correctly:
-
If you have a multimeter, check that there is continuity between pins 1 and 2 on the 4-pin connector that plugs in to the Duet, and between pins 3 and 4, but no continuity between 1 or 2 and 3 or 4.
-
If you don't have a multimeter, first feel how easy it is to spin the spindle between your fingers. Then short pin 1 to pin 2 on the connector that plugs into the Duet. If pins 1 and 2 are connected to the same phase, it will be much harder to spin the spindle with those pins shorted together.
-
-
Yes there is continuity between pins 1 and 2 and there is continuity between pins 3 and 4 but not between any other combination
-
In that case, the problem could be a faulty driver on the Duet. With power off, try connecting the motor to the E1 motor output instead of E0, and put this command in config.g just before your M350 command:
M584 X0 Y1 Z2 E4
-
My apologies DC42 I was testing the wrong motor when I was testing for continuity. There was a bad connection on the wires. Im just doing an actual test print now. I think im good. Thank you yet again for pointing me in the right direction