Did I fry my new board....
-
@Harvdog1 said in Did I fry my new board....:
is there a way to test that to see if I fried anything?
Well yes, first check that you have the phase pairs correct and then test that motor on another driver to make sure it works, then try a different motor on driver 2 and see if it works.
Posting your config.g and homing files would be a good idea too so we can see what's going on.
-
@Phaedrux ; Configuration file for Duet WiFi (firmware version 3)
; executed by the firmware on start-up
;
; generated by RepRapFirmware Configuration Tool v3.2.0 on Sat Jan 02 2021 04:57:58 GMT-0800 (Pacific Standard Time); General preferences
G90 ; send absolute coordinates...
M83 ; ...but relative extruder moves
M550 P"LoanHarvey" ; 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 S0 ; physical drive 0 goes backwards
M569 P1 S0 ; physical drive 1 goes backwards
M569 P2 S1 ; physical drive 2 goes forwards
M569 P3 S0 ; physical drive 3 goes backwards
M584 X0 Y1 Z2 E3 ; set drive mapping
M350 X16 Y16 Z16 E16 I1 ; configure microstepping with interpolation
M92 X80.00 Y80.00 Z400.00 E80.00 ; set steps per mm
M566 X1200.00 Y1200.00 Z24.00 E300.00 ; set maximum instantaneous speed changes (mm/min)
M203 X30000.00 Y30000.00 Z300.00 E4800.00 ; set maximum speeds (mm/min)
M201 X500.00 Y500.00 Z100.00 E5000.00 ; set accelerations (mm/s^2)
M906 X400 Y400 Z400 E800 I30 ; set motor currents (mA) and motor idle factor in per cent
M84 S300 ; Set idle timeout; Axis Limits
M208 X0 Y0 Z0 S1 ; set axis minima
M208 X235 Y235 Z240 S0 ; set axis maxima; Endstops
M574 X1 S1 P"xstop" ; configure active-high endstop for low end on X via pin xstop
M574 Y1 S1 P"ystop" ; configure active-high endstop for low end on Y via pin ystop
M574 Z1 S1 P"zstop" ; configure active-high endstop for low end on Z via pin zstop; Z-Probe
;M558 P0 H2.5 F0 T6000 ; disable Z probe but set dive height, probe speed and travel speed
;M557 X20:215 Y20:215 S64 ; define mesh grid; Heaters
M308 S0 P"bedtemp" Y"thermistor" T98801 B4185 ; configure sensor 0 as thermistor on pin bedtemp
M950 H0 C"bedheat" T0 ; create bed heater output on bedheat and map it to sensor 0
M307 H0 B0 S1.00 ; disable bang-bang mode for the bed heater and set PWM limit
M140 H0 ; map heated bed to heater 0
M143 H0 S120 ; set temperature limit for heater 0 to 120C
M308 S1 P"e0temp" Y"thermistor" T98801 B4185 ; configure sensor 1 as thermistor on pin e0temp
M950 H1 C"e0heat" T1 ; create nozzle heater output on e0heat and map it to sensor 1
M307 H1 B0 S1.00 ; disable bang-bang mode for heater and set PWM limit
M143 H1 S300 ; set temperature limit for heater 1 to 300C; Fans
M950 F0 C"fan0" Q500 ; create fan 0 on pin fan0 and set its frequency
M106 P0 S0 H-1 ; set fan 0 value. Thermostatic control is turned off
M950 F1 C"fan1" Q500 ; create fan 1 on pin fan1 and set its frequency
M106 P1 S1 H1 T45 ; set fan 1 value. Thermostatic control is turned on
M950 F2 C"fan1" Q500 ; create fan 2 on pin fan1 and set its frequency
M106 P2 S1 H0:1 T45 ; set fan 2 value. Thermostatic control is turned on; Tools
M563 P0 D0 H1 F0 ; 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; Custom settings
M591 D0 C3 P1 E1 S1 ; Turn on functionality for a filament run-out switch; Miscellaneous
M575 P1 S1 B57600 ; enable support for PanelDue
M911 S10 R11 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" ; set voltage thresholds and actions to run on power loss -
Do you have 2 Z motors connected or just one? If only 1, do you have the jumpers installed on the second motor connector?
If you have only one Z stepper motor, plug it in to the ZA connector, and plug two jumpers into the ZB connector. Duet 2 boards are normally supplied with these jumpers already fitted.
-
@Harvdog1 ; homeall.g
; called to home all axes
;
; generated by RepRapFirmware Configuration Tool v3.2.0 on Sat Jan 02 2021 04:57:58 GMT-0800 (Pacific Standard Time)
G91 ; relative positioning
G1 H2 Z2.5 F6000 ; lift Z relative to current position
G1 H1 X-240 Y-240 F1800 ; move quickly to X and Y axis endstops and stop there (first pass)
G1 H2 X5 Y5 F6000 ; go back a few mm
G1 H1 X-240 Y-240 F360 ; move slowly to X and Y axis endstops once more (second pass)
G1 H1 Z-245 F360 ; move Z down stopping at the endstop
G90 ; absolute positioning
G92 Z0 ; set Z position to axis minimum (you may want to adjust this); Uncomment the following lines to lift Z after probing
;G91 ; relative positioning
;G1 Z2.5 F100 ; lift Z relative to current position
;G90 ; absolute positioninghomex.g
; called to home the X axis
;
; generated by RepRapFirmware Configuration Tool v3.2.0 on Sat Jan 02 2021 04:57:58 GMT-0800 (Pacific Standard Time)
G91 ; relative positioning
G1 H2 Z4.5 F6000 ; lift Z relative to current position
G1 H1 X-240 F1800 ; move quickly to X axis endstop and stop there (first pass)
G1 H2 X5 F6000 ; go back a few mm
G1 H1 X-240 F360 ; move slowly to X axis endstop once more (second pass)
G1 H2 Z-2.5 F6000 ; lower Z again
G90 ; absolute positioning
; homey.g
; called to home the Y axis
;
; generated by RepRapFirmware Configuration Tool v3.2.0 on Sat Jan 02 2021 04:57:58 GMT-0800 (Pacific Standard Time)
G91 ; relative positioning
G1 H2 Z2.5 F6000 ; lift Z relative to current position
G1 H1 Y-240 F1800 ; move quickly to Y axis endstop and stop there (first pass)
G1 H2 Y5 F6000 ; go back a few mm
G1 H1 Y-240 F360 ; move slowly to Y axis endstop once more (second pass)
G1 H2 Z-2.5 F6000 ; lower Z again
G90 ; absolute positioning; homez.g
; called to home the Z axis
;
; generated by RepRapFirmware Configuration Tool v3.2.0 on Sat Jan 02 2021 04:57:58 GMT-0800 (Pacific Standard Time)
G91 ; relative positioning
G1 H2 Z2.5 F6000 ; lift Z relative to current position
G1 H1 Z-245 F1800 ; move Z down until the endstop is triggered
G92 Z0 ; set Z position to axis minimum (you may want to adjust this); Uncomment the following lines to lift Z after probing
;G91 ; relative positioning
;G1 Z2.5 F100 ; lift Z relative to current position
;G90 ; absolute positioning -
@Phaedrux One Z motor and the jumper is installed.
-
Can you post a photo of driver 2 in case there's some damage visible?
If the driver is damaged and you have a free extruder driver you can remap it to the z axis to get up and running.
M584 X0 Y1 Z2 E3 ; set drive mapping
would become
M584 X0 Y1 Z4 E3 ; set drive mapping
What are the specs of your motors? What is the rated current?
M906 X400 Y400 Z400 E800 I30 ; set motor currents (mA) and motor idle factor in per cent
It's recommended to set the current to 60-85% of the motors rated current.
Do the other drivers work?
-
@Phaedrux I had been working on this exact thing, I finally got the X going, I could issue it a command to move left or right and it started working. Prior to that it and the other 2 would just make horrible noises. Once it was working on the X, i checked the connections on the wiring, meaning how the wires were plugged into the little plastic things. The others were not matching that one, so I started moving wires around trying to replicate the one what was working. That did not work, now that one good wire will not work on the x axis...
-
do not just randomly try wire position
please follow this guide
-
-
@Harvdog1 said in Did I fry my new board....:
M950 H1 C"e0heat" T1 ; create nozzle heater output on e0heat and map it to sensor 1
you configured e0heat but connected the heater to e1
you really should be recrimping those connectors.
-
@Veti The crimper is in route. The hot end was connected like it is because I did it like one of the you tubers, he had his there. I see it now in position 1 and should be moved over to the left to zero.
Thank you -
@Harvdog1 said in Did I fry my new board....:
The hot end was connected like it is because I did it like one of the you tubers,
if you follow a guide please have a look at
https://duet3d.dozuki.com/Guide/Ender+3+Pro+and+Duet+Maestro+Guide+Part+1:+Wiring/37it should be mostly be the same
-
@Veti The micro swiss hotend is working now, thank you. Is there a way to find out if the drivers are all ok?
-
you said you had one that is working already.
you can move that one to the different ports to test each driver.
only move the connector when the duet is powered off. -
@Veti I did try that with the known good wire, and the others did not work. When I plugged it back into the X, it no longer worked. So they are all down at the moment.
-
what command are you using to test the movement?
-
@Veti I did a G1 X10, that kind of thing, did a couple of G1 X-10
-
did you issue M564 S0 H0 before like it says in the guide?
-
@Veti said in Did I fry my new board....:
M564 S0 H0
I dont remember, I have tried so many things. I just did, and got the error of insufficient axes homed
-
@Harvdog1 said in Did I fry my new board....:
I just did, and got the error of insufficient axes homed
you got that error after you put in M564 S0 H0 ?
that makes no sense