Duet 3 Mini5+ not heating the extruder
-
I don't know what is happening, I plugged the heater in the "OUT 1" but the Duet 3 is not giving power when I set a temperature in the DWC.
I measured the wires, it gives me 4 ohms (when the printer is off).
I turn on printer, and set a temperature, and I measure for volts, and nothing, 0 volts.Here are my settings for the nozzle heater:
M308 S1 P"temp1" Y"thermistor" T100000 B4138 M950 H1 C"out1" T1 M307 H1 B0 S1.00 M143 H1 S280
The thermistor works because it shows room temperature, and when I heat the nozzle (with a soldering iron for example), then the DWC shows the temperature rising
-
Since my previous post, I also tried to connect to OUT 2 and changed "M950 H1 C"out2" T1", and it still did not work.
To make sure that my heater is OK, I connected the heater wires directly to 12V of my power supply, the heat was going up pretty fast, and the DWC was showing the temperature going up also.
Forgot to show my board firmware in my previous post:
FIRMWARE_NAME: RepRapFirmware for Duet 3 Mini 5+ FIRMWARE_VERSION: 3.4.5 ELECTRONICS: Duet 3 Mini5plus WiFi FIRMWARE_DATE: 2022-11-30 19:41:16Please help! i'm out of ideas
-
New Update:
When I issue command "M109 S100" it works! it's heating up!
But! when I select the temperature from the drop down menu in DWC, it does not work!What M code does DWC send when selecting a temperature ? how do I edit that ?
-
@CVMichael said in Duet 3 Mini5+ not heating the extruder:
But! when I select the temperature from the drop down menu in DWC, it does not work!
It sounds like you just don't have the tool selected.
Please post your full config.g.
Does your DWC version match 3.4.5?
-
@Phaedrux
Here is the version from DWC
Board: Duet 3 Mini 5+ (Mini5plus)
Firmware: RepRapFirmware for Duet 3 Mini 5+ 3.4.5 (2022-11-30)
Duet WiFi Server Version: 1.26; General preferences G90 ; send absolute coordinates... M83 ; ...but relative extruder moves M550 P"Mendel90" ; set printer name ; Network M552 S1 ; enable network M586 P0 S1 ; enable HTTP M586 P1 S0 ; disable FTP M586 P2 S1 ; enable Telnet ; Drives M569 P0.0 S0 ; Y M569 P0.1 S1 ; Z M569 P0.2 S0 ; Z M569 P0.3 S0 ; X M569 P0.4 S1 ; E M584 X0.3 Y0.0 Z0.1:0.2 E0.4 ; set drive mapping M350 X16 Y16 Z16 E16 I1 ; configure microstepping with interpolation M92 X80.00 Y80.00 Z3200.00 E873.08 ; set steps per mm M566 X900.00 Y900.00 Z60.00 E120.00 ; set maximum instantaneous speed changes (mm/min) M203 X40000.00 Y40000.00 Z700.00 E1200.00 ; set maximum speeds (mm/min) M201 X4000.00 Y4000.00 Z40.00 E250.00 ; set accelerations (mm/s^2) M906 X1000 Y1000 Z1000 E1000 I30 ; set motor currents (mA) and motor idle factor in per cent M84 S30 ; Set idle timeout ; Axis Limits M208 X0 Y0 Z0 S1 ; set axis minima M208 X200 Y200 Z194.5 S0 ; set axis maxima ; Endstops M574 X1 S1 P"io3.in" ; configure switch-type (e.g. microswitch) endstop for low end on X via pin io3.in M574 Y1 S1 P"io6.in" ; configure switch-type (e.g. microswitch) endstop for low end on Y via pin io6.in M574 Z2 S1 P"io5.in" ; configure switch-type (e.g. microswitch) endstop for high end on Z via pin io5.in ; Z-Probe M558 P0 H5 F120 T6000 ; disable Z probe but set dive height, probe speed and travel speed M557 X15:200 Y15:195 S20 ; define mesh grid ; Heaters M308 S0 P"temp0" Y"thermistor" T100000 B4138 ; configure sensor 0 as thermistor on pin temp0 M950 H0 C"out0" T0 ; create bed heater output on out0 and map it to sensor 0 ;M307 H0 B1 S1.00 D30 ; enable bang-bang mode for the bed heater and set PWM limit M307 H0 R0.201 K0.376:0.000 D3.19 E1.35 S1.00 B0 M140 H0 ; map heated bed to heater 0 M143 H0 S100 ; set temperature limit for heater 0 to 100C M308 S1 P"temp1" Y"thermistor" T100000 B4138 ; configure sensor 1 as thermistor on pin temp1 M950 H1 C"out1" T1 ; create nozzle heater output on out1 and map it to sensor 1 M307 H1 B0 S1.00 ; disable bang-bang mode for heater and set PWM limit M143 H1 S280 ; set temperature limit for heater 1 to 280C ; Fans M950 F0 C"out3" Q500 ; create fan 0 on pin out3 and set its frequency M106 P0 S0 H-1 ; set fan 0 value. Thermostatic control is turned off M950 F1 C"out4" Q500 ; create fan 1 on pin out4 and set its frequency M106 P1 S1 H1 T45 ; set fan 1 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 are not defined ; Miscellaneous M911 S10 R11 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" ; set voltage thresholds and actions to run on power loss
-
I suggest you upload this zip file for 3.4.5 to ensure you have everything up to date.
https://github.com/Duet3D/RepRapFirmware/releases/download/3.4.5/Duet2and3Firmware-3.4.5.zip
Then add
T0
to the end of your config.g so that your tool is selected at startup.