Extruder found
-
Hello everyone, i am currently upgrading my venerable replicator 2 to run on a Duet wifi and to utilize an E3D Hermera hot end. I have mostly worked the kinks out and am able to move all the axis and home to their end stops, however i am coming up with problems getting the extruder to show on the web interface.
The extruder setup looks ok but it is not recognized and the heater does not heater does not display on the interface next to my heated bed readout. The heater does function as iv been able to run M303.
Here is my Config file:-
; Configuration file for Duet WiFi (firmware version 3.1.1)
; executed by the firmware on start-up
;
; Modified from V3 config.g on 4-06-2020; 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 X-10 Y0 Z0 S1 ; Set axis minima (bed offset 12 and 10 from zero)
M208 X252 Y142 Z150 S0 ; Set axis maxima (reduced by offset above); Enable Panel Due Connector
M575 P1 S1 B57600 ; Enables connector and sets baud rate; Endstops- Switches
M574 X1 S1 P"!xstop" ; X min active high endstop switch
M574 Y1 S1 P"!ystop" ; Y min active high endstop switch
M574 Z1 S1 P"!zstop" ; Z min active high endstop switch - Config for hard Z Endstop; Endstops- Z Probe
M574 X1 S1 P"!xstop" ; X min active high endstop switch
M574 Y1 S1 P"!ystop" ; Y min active high endstop switch
M574 Z1 S1 P"!zstop" ; Z min active high endstop switch - Config for Z Probe;NPN Sensor
;M558 P5 C"zprobe.in" X0 Y0 Z1 H5 I1 F200 T150000 ; NPN Capacitive Probe probe on ZProbe Connector, the axes for which it is used and the probe + travel speeds
;M558 P5 X0 Y0 Z1 H5 I1 F200 T150000 ; NPN Capacitive Probe probe on ZProbe Connector, the axes for which it is used and the probe + travel speeds
;G31 P500 X-38 Y2 Z1.29 ; Set Z probe trigger value, offset and trigger height - Increase Z value to move bed closer to nozzle;M557 X5:204 Y3:242 S20 ; Define mesh grid
; Drives
M569 P0 S0 ; Drive 0 goes backwards
M569 P1 S0 ; Drive 1 goes backwards
M569 P2 S1 ; Drive 2 goes forwards
M569 P3 S1 ; Drive 3 goes forwards
M569 P4 S1 ; Drive 4 goes forwards
M350 X16 Y16 Z16 E16 I1 ; Configure microstepping with interpolation
M92 X88.573186 Y177.78 Z400 E409 ; Set steps per mm
M566 X900 Y900 Z300 E1200 ; Set maximum instantaneous speed changes (mm/min)
M203 X1080000 Y1080000 Z600 E96000 ; Set maximum speeds (mm/min)
M201 X1000 Y1000 Z100 E2000 ; Set accelerations (mm/s^2)
M906 X900 Y1000 Z400 E900 I30 ; Set motor currents (mA) and motor idle factor in per cent
M84 S30 ; Set idle timeout; Heaters
M308 S0 P"bedtemp" Y"thermistor" T100000 B3974 C0 R4700 ; 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
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" T100000 B4725 C7.06e-8 ; 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
M143 H1 S280 ; set temperature limit for heater 1 to 280CM307 H0 R0.261 K0.401:0.000 D3.11 E1.35 S1.00 B0 ; Set PID values for Heatedbed - derived from autotune
M307 H1 R1.170 K0.275:0.000 D9.79 E1.35 S1.00 B0 V19.9 ; Set PID values for Extruder 1 - derived from autotune; 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
M207 S1.2 F1200 ; set 1.2mm retract distance for G10 command; Network
M550 P"Duet_Rep2X" ; Set machine name
;M551 P"XXXXX" ; Set password
M552 S1 ; Enable network
;M552 P192.168.0.98 ;Fixed IP Address
;M554 P192.168.0.1 ;Gateway
;M553 P255.255.255.0 ;Netmask; Access point is configured manually via M587 by the user
M586 P0 S1 ; Enable HTTP
M586 P1 S1 ; Enable FTP
M586 P2 S0 ; Disable Telnet; Fans
M950 F0 C"fan0" Q500 ; Set fan 0 value, PWM signal inversion and frequency.
M106 P0 H-1 ; Set fan 0. Thermostatic control is turned off
M106 P0 S0 ; Switch cooling fan off
M950 F1 C"fan1" Q500 ; Set fan 1 value, PWM signal inversion and frequency.
M106 P1 H1 T45 ; Set fan 1 Thermostatic control turned on
;M950 F2 C"fan2" Q500 ; Set fan 2 value, PWM signal inversion and frequency.
;M106 P2 H2 T45 ; Set fan 2 Thermostatic control turned on; Custom settings are not configured
I would say i have bastardized someone elses rep 2 config file from thingiverse.
Any help explaing why my heater and extruder dont display would be greatly appreciated.
Currently running web control 3.4.1 and 3.4.0 rep rap for Duet.
Daniel.
-
@daniel-armstrong You haven't selected T0 in config.g
-
@stephen6309 Hi Stephen, thank you for the quick reply, where should i be calling out the t0? Im rather new to programming and might need leading to the answer haha.
-
@daniel-armstrong The best place is at the end of config.g, so that a tool is selected at startup.
-
So i have added the following to then end of the config.g
; 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
M207 S1.2 F1200 ; set 1.2mm retract distance for G10 command; Select Tool
T0This does not seem to have added the tool or heater to the web interface, what else could i be missing?
-
It seems i was missing M584 X0 Y1 Z2 E3 ; set drive mapping. After adding this line in i now have my Tool added to the dashboard.
-
@daniel-armstrong Make sure DWC and the firmware are on the same version.
Your missing the M584, you need it to define the stepper drives used.
I used M584 X0 Y1 Z2 E3 with my Duet 2.
X is drive 0
Y is drive 1
Z is drive 2
Extruder is drive 3 -
@stephen6309 Thanks im going to look at the firmware versions now, cheers for the help.
-
You can also do a basic syntax check of your config.g by sending M98 P"config.g" in the gcode console. This will run config.g as a macro and spit out any error messages that may get missed on power up.