Duet+X4 Webcontrol-adding extruders June 08, 2015 11:04PM |
Registered: 9 years ago Posts: 93 |
Re: Duet+X4 Webcontrol-adding extruders June 09, 2015 05:57AM |
Registered: 11 years ago Posts: 665 |
Re: Duet+X4 Webcontrol-adding extruders June 09, 2015 09:55PM |
Registered: 9 years ago Posts: 93 |
; Ormerod 2 config file for dc42 Duet firmware M111 S0 ; Debug off M550 PDUET^2+1 ; Machine name (can be anything you like) M551 Preprap ; Machine password (currently not used) M540 P0xBE:0xEF:0xDE:0xAD:0xFE:0xED ; MAC Address ;*** Adjust the IP address and gateway in the following 2 lines to suit your network M552 P192.168.1.14 ; IP address M554 P192.168.1.1 ; Gateway M553 P255.255.255.0 ; Netmask M555 P2 ; Set output to look like Marlin G21 ; Work in millimetres G90 ; Send absolute coordinates... M83 ; ...but relative extruder moves ;***end limit switch change M558 P0 X0 Y0 Z0 ; SET PROBE TO SWITCH- 0 NO PROBE M574 X1 Y2 Z1 S0 ; set endstop configuration (S0 active LOW) M906 X525 Y375 Z575 E1100:1100:1100:1100 ; Set motor currents (mA) ;*** SINGLE EXTRUDER SETUP ;M563 P0 D0 H1 ; Define tool 0 ;G10 P0 S0 R0 ; Set tool 0 operating and standby temperatures ;M92 Z1066.666 E75 ; Set steps per mm (single nozzle) ;*** MULTI-EXTRUDER SETUP M563 P0 D2 H2 ; Define tool 1 G10 P0 S0 R0 ; Set tool 1 operating and standby temperatures M563 P0 D3 H3 ;DEFINE TOOL2 G10 P0 S0 R0 ; Set tool 2 operating and standby temperatures M563 P2 D4 H4 ;DEFIND TOOL3 G10 P2 S0 R0 ; Set tool 3 operating and standby temperatures M92 Z1066.666 E75:75:75:75 ; Set extruder steps/mm (TRI nozzle) ;*** If you have a Duet board with 4.7K thermistor series resistors, change R1000 to R4700 to the following M305 commands M305 P0 T95000 R1000 H-11 L0 ; E3D THERM CRIMP ON WIRE-H+L values Set the bed thermistor ADC correction M305 P1 R1000 H-11 L0 ; E3D V6-H+L values Set the bed thermistor ADC correction M305 P1 R1000 H-11 L0 ; E3D V6-H+L values Set the bed thermistor ADC correction M305 P3 R1000 H-11 L0 ; E3D V6-H+L values Set the bed thermistor ADC correction M305 P4 T24 B4285 R1000 H-15 L0 ; E3D K COUPLE-H+L values Set the bed thermistor ADC correction ;*** if you are using axis compensation, put the figures in the following command M556 S78 X0 Y0 Z0 ; Axis compensation here M201 X700 Y700 Z75 E500:500:500:500 ; Accelerations (mm/s^2) M203 X9000 Y9000 Z700 E3600 ; Maximum speeds (mm/min) M566 X600 Y600 Z60 E20 ; Minimum speeds (mm/min) M208 X230 Y286 Z210 ; set axis maxima (adjust to suit your machine) M208 X0 Y0 S1 ; set axis minimum (adjust to make X=0 the edge of the bed) M119
Re: Duet+X4 Webcontrol-adding extruders June 10, 2015 03:49AM |
Registered: 11 years ago Posts: 14,686 |
;*** MULTI-EXTRUDER SETUP M563 P0 D2 H2 ; Define tool 1 G10 P0 S0 R0 ; Set tool 1 operating and standby temperatures M563 P0 D3 H3 ;DEFINE TOOL2 G10 P0 S0 R0 ; Set tool 2 operating and standby temperatures M563 P2 D4 H4 ;DEFIND TOOL3 G10 P2 S0 R0 ; Set tool 3 operating and standby temperatures
Re: Duet+X4 Webcontrol-adding extruders June 10, 2015 11:22PM |
Registered: 9 years ago Posts: 93 |
;*** SINGLE EXTRUDER SETUP M563 P0 D0 H1 ;DEFINE TOOL 0 G10 P0 S0 R0 ; SET T0 OPERATING+STANDBY TEMP ;M92 Z1066.666 E75 ; SET EXTRUDER STEPS/MM ;*** MULTI-EXTRUDER SETUP M563 P1 D1 H2 ;DEFINE TOOL 1 G10 P1 S0 R0 ; SET T1 OPERATING+STANDBY TEMP M563 P2 D2 H3 ;DEFINE TOOL2 G10 P2 S0 R0 ; SET T2 OPERATING+STANDBY TEMP M563 P3 D3 H4 ;DEFIND TOOL3 G10 P3 S0 R0 ; SET T3 OPERATING+STANDBY TEMP M563 P4 D4 H5 ;DEFIND TOOL4 G10 P4 S0 R0 ; SET T4 OPERATING+STANDBY TEMP M92 Z1066.666 E75 ; SET EXTRUDER STEPS/MM ;
Re: Duet+X4 Webcontrol-adding extruders June 11, 2015 04:05AM |
Registered: 11 years ago Posts: 14,686 |
Re: Duet+X4 Webcontrol-adding extruders June 11, 2015 08:37PM |
Registered: 9 years ago Posts: 93 |
<!DOCTYPE HTML> Ormerod Control v1.06If I remeber right I followed ZPL web control links to download that /www from github separately when I updated panelDUE and the Duet shortly before I saw v1.09 duet released.
<!DOCTYPE html> <!-- Duet Web Control v1.06 written by Christian Hammacher licensed under the terms of the GPL v2 see [www.gnu.org] -->
Re: Duet+X4 Webcontrol-adding extruders June 12, 2015 03:42AM |
Registered: 11 years ago Posts: 14,686 |