Solved Extruder heater not showing up on DWC.
-
Post your config.g please. And Verify for us what firmware version and DWC version you're using.
-
This post is deleted! -
Try it again with the code objects.
config file:
; Configuration file for Duet 3 (firmware version 3.3) ; executed by the firmware on start-up ; ; generated by RepRapFirmware Configuration Tool v3.3.7 on Fri Nov 26 2021 04:02:47 GMT-0800 (Pacific Standard Time) ; General preferences G90 ; send absolute coordinates... M83 ; ...but relative extruder moves M550 P"My Printer" ; set printer name M669 K1 ; select CoreXY mode ; Wait a moment for the CAN expansion boards to start G4 S2 ; Network M552 P0.0.0.0 S1 ; enable network and acquire dynamic address via DHCP M586 P0 S1 ; enable HTTP M586 P1 S0 ; disable FTP M586 P2 S0 ; disable Telnet ; Drives M569 P0.0 S0 ; physical drive 0.0 goes BACKwards M569 P0.1 S0 ; physical drive 0.1 goes BACKwards M569 P0.2 S1 ; physical drive 0.2 goes forwards M569 P1.0 S1 ; physical drive 1.0 goes forwards M584 X0.0 Y0.1 Z0.2 E1.0 ; set drive mapping M350 X16 Y16 Z16 E16 I1 ; configure microstepping with interpolation M92 X80.00 Y80.00 Z400.00 E420.00 ; set steps per mm M566 X900.00 Y900.00 Z60.00 E120.00 ; set maximum instantaneous speed changes (mm/min) M203 X6000.00 Y6000.00 Z180.00 E1200.00 ; set maximum speeds (mm/min) M201 X500.00 Y500.00 Z20.00 E250.00 ; set accelerations (mm/s^2) M906 X800 Y800 Z800 E800 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 X230 Y210 Z200 S0 ; set axis maxima ; Endstops M574 X2 S1 P"io1.in" ; configure switch-type (e.g. microswitch) endstop for high end on X via pin io1.in M574 Y2 S1 P"io2.in" ; configure switch-type (e.g. microswitch) endstop for high end on Y via pin io2.in ; Z-Probe M558 P0 H5 F120 T6000 ; disable Z probe but set dive height, probe speed and travel speed M557 X15:215 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 ; enable 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"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 M140 H1 ; map EXTRUDER HEATER to heater 1 M143 H1 S280 ; set temperature limit for heater 1 to 280C ; Fans M950 F0 C"out4" Q500 ; create fan 0 on pin out4 and set its frequency M106 P0 S0 H-1 ; set fan 0 value. Thermostatic control is turned off M950 F1 C"out9" Q500 ; create fan 1 on pin out9 and set its frequency M106 P1 S1 H1 T45 ; set fan 1 value. Thermostatic control is turned on M950 F2 C"out5" Q500 ; create fan 2 on pin out5 and set its frequency (TEMPORARILY ZERO) M106 P2 S1 H-1 ; set fan 2 value. Thermostatic control is turned off M950 F3 C"out7" Q500 ; create fan 3 on pin out7 and set its frequency (TEMPORARILY ZERO) M106 P3 S1 H-1 ; set fan 3 value. Thermostatic control is turned off M950 F4 C"out8" Q500 ; create fan 4 on pin out8 and set its frequency M106 P4 S1 H-1 ; set fan 4 value. Thermostatic control is turned off ; Tools ;M563 P0 D0 F-1 ; define tool 0 M563 P0 D1.0 H1 F1 ; 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 m584 Z0.2:0.3:0.4:0.5 M106 P4 S000 ; TEMP STOP DRIVER FAN M106 P3 S000 ; TEMP STOP PAN FAN M106 P2 S000 ; TEMP STOP HEPA FAN
How do I find the DWC version? Can't find it on DWC..
-
@kcress your M563 definition is wrong
Should beM563 P0 D0 H1 F1
And DWC is on the machine specific settings tab (I think).
If not that tab then the general one -
@jay_s_uk ummm,
That seems to be the Duet Firmware which should be the same DWC?Firmware: RepRapFirmware for Duet 3 MB6HC 3.3 (2021-06-15)
That has both the BED and the Extruder at the same temp now.
![alt text]( image url)
-
@kcress ah, it's on the general settings tab.
Your config looks correct in that it uses temp0 for the bed and temp1 for the hotend. So I would be looking at your wiring now.
You're also probable not using B4138 thermistors so you need to update your config with the correct thermistor information. -
Thanks.
The thermistors might be correct. Because I couldn't tell if they were the same or not I turned on the extruder heat, (50W), that got up to that fairly quickly while I was looking for the DWC version.Aw yes! I see it now. Thanks. Man-o-man, I looked for it everywhere - I thought.
Duet Web Control 3.3.0
-
Can't see a HW issue. I unplugged them from the original controller and moved them over to the 6HC.
One sez "E Temp"
the other "Bed Temp"![alt text]( image url)
-
@kcress can you take a picture from another angle? It's difficult to see where the wires go.
Do you have the config from the other controller so you know what the right thermistors are? -
![alt text]( image url)
I found the original config!!
; Configuration file for Duet WiFi (firmware version 1.20 or newer) ; executed by the firmware on start-up ; --- general preferences --- M111 S0 ; debugging off G21 ; work in millimetres G90 ; send absolute coordinates M83 ; relative extruder moves M555 P2 ; set firmware compatibility to look like Marlin M667 S1 ; select CoreXY mode M208 X0 Y0 Z-5 S1 ; set axis minima to end of safe travel. M208 X310 Y308 Z400 S0 ; set axis maxima to match endstop location. ; ---filament sensing--- M591 D0 P1 C"e0_stop" S1 ; Automatic power saving M911 S21 R23 P"M913 X0 Y0 G91 M83 G1 Z0 E-3 F1000" ; Set voltage thresholds and actions to run on power loss ; --- endstops --- M574 X2 S1 P"^xstop" M574 Y2 S1 P"^ystop" ; Z-Probe M574 Z0 P"nil" ; no Z endstop switch, free up Z endstop input M558 P9 C"^zprobe.in" H5 R1 F120 T6000 A5 S0.02 ;BLTouch connected to Z probe IN pin M950 S0 C"duex.pwm5" M574 Z1 S0 ; Set endstops controlled by probe G31 P50 X0 Y21 Z3.0 ; Set Z probe trigger value, offset and trigger height M557 X15:285 Y15:285 S50 ; Define mesh grid ; --- drives --- M569 P0 S1 ; X M569 P1 S1 ; Y ;M569 P2 S0 ; Z M569 P3 S1 ; E0 ;M569 P4 S1 ; E1 ; -- duex -- M569 P5 S1 ; Z5 M569 P6 S0 ; Z6 M569 P7 S1 ; Z7 M569 P8 S0 ; Z8 M569 P2 R-1 M569 P4 R-1 M569 P9 R-1 ; --- z-axis stepper leveling configuration --- M584 X0 Y1 E3 Z6:5:8:7 ; four motors, at 5, 6, 7, and 8 ;M671 X370:370:-50:-50 Y330:-65:-65:330 S20 ; Z belts at 4 corners M671 X-50:-50:370:370 Y330:-65:-65:330 S20 ; Z belts at 4 corners ; --- drive map --- ; _______ ; | 6 | 7 | ; | ----- | ; | 5 | 8 | ; ------- ; front M350 X16 Y16 Z16 E16 I1 ; microstepping with interpolation (I1) M92 X80 Y80 Z400 E400 ; steps per mm - with bt M566 X2000 Y2000 Z602.65 E1000 ; maximum instantaneous speed changes (mm/min) (jerk) M203 X20000 Y20000 Z1500 E10000 ; maximum speeds (mm/min) M201 X1500 Y1500 Z500 E10000 ; accelerations M906 X1200 Y1200 Z1200 E1250 I60 ; motor currents (mA) and motor idle factor in per cent M84 S60 ; set idle timeout ; Network M550 P"VIVEDINO" ; Set machine name M552 S1 ; Enable network M587 S"FORMBOT" P"zxcv555578" ; 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 ; --- firmware retraction --- ;M207 S2.5 R0 F6500 T4500 Z0 ; [ Snnn positive length to retract, in mm ] ; [ Rnnn positive or negative additional length to un-retract, in mm ] ; [ Fnnn retraction feedrate, in mm/min ] ; [ Tnnn feedrate for un-retraction if different from retraction, mm/min ] ; [ Znnn additional zlift/hop ] ; --- heaters --- M308 S0 P"bed_temp" Y"thermistor" T100000 B4138 C0 R4700 ; define bed temperature sensor M308 S1 P"e0_temp" Y"thermistor" T100000 B4138 C0 R4700 ; define E0 temperature sensor M950 H0 C"bed_heat" T0 ; heater 0 uses the bed_heat pin, sensor 0 M950 H1 C"e0_heat" T1 ; heater 1 uses the e0_heat pin and sensor 1 M140H0 ;M305 P0 T100000 B4138 C0 R4700 ; set thermistor + ADC parameters for heater 0 M307 H3 A-1 C-1 D-1 ; set PID tuned settings for heater 0 M143 H0 S125 ; set temperature limit for heater 0 to 120C ;M305 P1 T100000 B4138 C0 R4700 ; set thermistor + ADC parameters for heater 1 M307 H1 A517.3 C213.3 D11.1 V24.3 B0 ; set PID tuned settings for heater 1 M143 H1 S280 ; set temperature limit for heater 1 to 280C ; --- 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 ; --- fans --- M950 F0 C"fan0" ; Fan 0 uses the Fan0 output M950 F1 C"fan1" ; Fan 1 uses the Fan1 output M950 F2 C"fan2" ; Fan 2 uses the Fan2 output M106 P0 S0 I0 F500 H-1 ; Set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off M106 P1 S0.9 I0 F500 H1 T50 ; Set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on M106 P2 S1 I0 F500 H1 T50 ; Set fan 2 value, PWM signal inversion and frequency. Thermostatic control is turned on M572 D0 S.15 ;M572 D0 S.4 ; Linear Advance ;M592 D0 A0.01 B0.0005 ;nonlinear extrusion ; --- Set or report heating process parameters--- M106 P3 I-1 M106 P4 I-1 M106 P5 I-1 M106 P6 I-1 M106 P7 I-1 M106 P8 I-1 ; --- RGB leds - White --- M950 P1 C"duex.fan4" M950 P2 C"duex.fan5" M950 P3 C"duex.fan6" M42 P1 S1.0 ; R- M42 P2 S1.0 ; G- M42 P3 S1.0 ; B- ; --- Case Fan --- M950 P5 C"duex.fan7" M42 P5 S0.0 ; ; --- Controller Fan --- M950 P4 C"duex.fan8" M42 P4 S0.5 ; M501
Sooooo
; --- heaters --- M308 S0 P"bed_temp" Y"thermistor" T100000 B4138 C0 R4700 ; define bed temperature sensor M308 S1 P"e0_temp" Y"thermistor" T100000 B4138 C0 R4700 ; define E0 temperature sensor M950 H0 C"bed_heat" T0 ; heater 0 uses the bed_heat pin, sensor 0 M950 H1 C"e0_heat" T1 ; heater 1 uses the e0_heat pin and sensor 1 M140H0
-
Changed it to this:
M308 S0 P"temp0" Y"thermistor" T100000 B4138 C0 R4700 ; define bed temperature sensor M308 S1 P"temp1" Y"thermistor" T100000 B4138 C0 R4700 ; define E0 temperature sensor M950 H0 C"out0" T0 ; heater 0 uses the bed_heat pin, sensor 0 M950 H1 C"out1" T1 ; heater 1 uses the e0_heat pin and sensor 1 M307 H0 B1 S1.00 ; enable bang-bang mode for the bed heater and set PWM limit M307 H1 B0 S1.00 ; disable bang-bang mode for heater and set PWM limit M140 H0 ; map heated bed to heater 0 M140 H1 ; map EXTRUDER HEATER to heater 1
No improvement. Still both are called "Heater 1" and I think show the extruder temp.
![alt text]( image url)
-
Take out the second M140 that has H1
M140 is specifically for the bed heater, not extruders.
-
-
-
-
A come-back note:
Noting that the heaters were reading too low. With the original Vivendo Troodon M308:
M308 S0 P"temp0" Y"thermistor" T100000 B4138 C0 R4700 ; define bed temperature sensor
The temperatures were corrected by removal of "R4700"
which is a compensation for what divider resistor is used on the Duet board or clone. Removing the R4700 and leaving it the default (whatever it is on the Duet 6HC) corrected the temp readings. -
@kcress thanks, yes they are 2k2 resistors on the 6HC which is why the documentation recommends not putting the R value in in recent firmware as the defaults should be correct.