Hi All,
I build a HEVO (COREXY) with a BLTOUCH which i use as Z Endstop & Z-OFFSet Calibration. The BLTouch configuration vice works fine, i used the configuration description of : https://betrue3d.dk/bltouch-on-duet-wifi-configuratio-and-usage/ (NOTE: as you will see in my config i used P9 instead of P5 which was suggested by betrue).
My Issue currently is that my first layer is to close to the bed and it always looks like overextrusion (extruder is calibrated). So my suspicion is that it has something to do with z-offset measurement/configuration i do, but what ever i do (re-calibrate, re-measure) it doesn't get better.
What i tried so far:
- reduced the Trigger Speed
- measure with a heated bed
- uncommented "M501" which i found and not know how it will used
Below i added all my configs including Start and End Gcode plus the start of an example print. It would be great if someone can help to get to the bottom of this.
Many thanks
My Duet:
Board: Duet WiFi 1.02 or later
Firmware: RepRapFirmware for Duet 2 WiFi/Ethernet 2.04RC3 (2019-10-08b3)
Duet WiFi Server Version: 1.21
config.g
; Configuration file for Duet WiFi (firmware version 1.21)
; executed by the firmware on start-up
;
; generated by RepRapFirmware Configuration Tool v2 on Sun Dec 16 2018 09:31:03 GMT+0100 (Central European Standard Time)
; General preferences
G90 ; Send absolute coordinates...
M83 ; ...but relative extruder moves
M667 S1 ; Select CoreXY mode
; Network
M550 P"machine" ; Set machine name
M552 S1 ; Enable network
;M587 S"SSID" P"PASSWORD" ; Configure access point. You can delete this line once connected
M586 P0 S1 ; Enable HTTP
M586 P1 S1 ; Disable FTP
M586 P2 S0 ; Disable Telnet
; Drives
M569 P0 S1 ; Drive 0 goes forwards
M569 P1 S1 ; Drive 1 goes forwards
M569 P2 S0 ; Drive 2 goes forwards
M569 P3 S1 ; Drive 3 goes forwards
M569 P4 S0 ; Drive 3 goes forwards
M584 X0 Y1 Z2:4 ;U4 E3 P3 ; Driver 0 For X, 1 for Y, Z=2:4 U=4, Extruder 3 ; Motor remapping for dual Z
M350 X16 Y16 Z16 E16 I1 ; Configure microstepping with interpolation
M92 X100.00 Y100.00 Z400.00 E435.134 ; Set steps per mm
M566 X900.00 Y900.00 Z12.00 E120 ; v.1.0 Set maximum instantaneous speed changes (mm/min)
M203 X6000.00 Y6000.00 Z180.00 E1200.00 ; v.1.0 Set maximum speeds (mm/min)
M201 X500.00 Y500.00 Z20.00 E250.00 ; v.1.0 Set accelerations (mm/s^2)
M906 X1360.00 Y1360.00 Z1200.00 E1360.00 I30 ; Set motor currents (mA) and motor idle factor in per cent
M84 S30 ; Set idle timeout
M667 S1
M671 X-25.8:245.8 Y112:112 S6 ; Define positions of Z leadscrews
; Axis Limits
M208 X0 Y0 Z0 S1 ; Set axis minima
M208 X210 Y210 Z200 S0 ; Set axis maxima
; Endstops & Z-Probe
M574 X1 Y1 S1 ; X home to min. Y home to max. Normally Closed limit switches.
M574 Z1 S2 ; Set endstops controlled by probe
M307 H3 A-1 C-1 D-1 ; Disable heater on PWM channel for BLTouch
M558 P9 H5 F80 T4000 ; X0 Y0 Z1 (old Values) Set Z probe type/mode 5. H=Dive Height. F=Speed the bed moves
G31 P25 X21 Y0 Z0.608 ; v.2.0 was 0.170 v.1.0 was 0.340 was 0.660Set Z probe trigger value, offset and trigger height
M557 X25:200 Y0:190 S80 ; Define mesh grid
; Heaters
M305 P0 T100000 B4138 R4700 ; Set thermistor + ADC parameters for heater 0
M143 H0 S120 ; Set temperature limit for heater 0 to 120C
M305 P1 T100000 B4138 R4700 ; Set thermistor + ADC parameters for heater 1
M143 H1 S280 ; Set temperature limit for heater 1 to 280C
; BLTouch - Heaters
M307 H7 A-1 C-1 D-1 ; Disable the 7th Heater to free up PWM channel 5 on the Duex board.
; Fans
M106 P0 S0 I0 F500 H-1 ; Set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
M106 P1 S1 I0 F500 H1 T45 ; Set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on
; 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
;M563 P1 D1 H1 ; Define tool 1
;G10 P1 X0 Y0 Z0 ; Set tool 1 axis offsets
;G10 P1 R0 S0 ; Set initial tool 1 active and standby temperatures to 0C
; Automatic saving after power loss is not enabled
; Custom settings are not configured
; Miscellaneous
M404 N1.75 D0.4 ; Filament width and nozzle diameter
M376 H10 ; Set bed compensation to taper off over 10mm
;M501 ; Load saved parameters from non-volatile memory
T0 ; Select first tool
M572 D0:1 S0.10 ; Pressure advance
My homeall.g
; homeall.g
; called to home all axes
;
; generated by RepRapFirmware Configuration Tool v2 on Sun Dec 16 2018 09:31:03 GMT+0100 (Central European Standard Time)
G91 ; relative positioning
G1 Z5 F6000 S2 ; lift Z relative to current position
M98 Pdeployprobe.g ; deploy mechanical Z probe
G1 S1 X-250 Y-250 F1800 ; move quickly to X or Y endstop and stop there (first pass)
G1 S1 X-250 ; home X axis
G1 S1 Y-250 ; home Y axis
G1 X5 Y5 F6000 ; go back a few mm
G1 S1 X-250 F360 ; move slowly to X axis endstop once more (second pass)
G1 S1 Y-250 ; then move slowly to Y axis endstop
G90 ; absolute positioning
G1 X80 Y100 F6000 ; go to first bed probe point and home Z
G30 ; home Z by probing the bed
G1 X0 Y0 F6000 ; go back to starting position
M98 Pretractprobe.g ; retract mechanical Z probe
My homez.g
; homez.g
; called to home the Z axis
;
; generated by RepRapFirmware Configuration Tool v2 on Sun Dec 16 2018 09:31:03 GMT+0100 (Central European Standard Time)
G30 ; Do a single probe to home our Z axis
G90 ; Make sure we are in absolute mode
G1 Z10 F6000 ; Rapidly move the Z axis to Z=10.
i use cura 4.3.0 for slicing
my Start Gcode
; Startup Gcode
G91 ; Relative Positioning
G1 Z-1 ; Move Z down 1mm
G90 ; Absolute Positioning
G28 XY ; Home XY
M561 ; Clear any bed transform
G1 X79 Y100 ; Move Probe to middle of bed
G32 ; Start 2-point probe sequence
G29 S1 ; Load heightmap
G1 Z20.0 F6000 ; Move Z to 20
G1 X5 Y5 ; Move Head to front left
G92 E0 ; Zero Extruder
G1 F200 E20 ; Prime the extruder
G92 E0 ; Zero Extruder
My End G-Code
; End Gcdoe
G10 P0 R-273.15 S-273.15 ; Turn off Tool0
G10 P1 R-273.15 S-273.15 ; Turn off Tool1
G10 P2 R-273.15 S-273.15 ; Turn off Tool2
M140 S-273.15 ; Turn off Bed
M141 S-273.15 ; Turn off Chamber Heater
M106 S0 ; Object fan off
G92 E0 ; Zero Extruder
G1 E-2 F300 ; Retract 2mm
G92 E0 ; Zero Extruder
G28 XYU ; Home XY and U to Z max
M84 ; All motors Off
And an the start example file i print for testing from thinigverse for string test
;FLAVOR:RepRap
;TIME:1604
;Filament used: 0.830472m
;Layer height: 0.2
;MINX:86.455
;MINY:81.302
;MINZ:0.3
;MAXX:113.655
;MAXY:128.502
;MAXZ:25.7
;Generated with Cura_SteamEngine 4.3.0
T0
M190 S60
M104 S195
M109 S195
M82 ;absolute extrusion mode
; Startup Gcode
G91 ; Relative Positioning
G1 Z-1 ; Move Z down 1mm
G90 ; Absolute Positioning
G28 XY ; Home XY
M561 ; Clear any bed transform
G1 X79 Y100 ; Move Probe to middle of bed
G32 ; Start 2-point probe sequence
G29 S1 ; Load heightmap
G1 Z20.0 F6000 ; Move Z to 20
G1 X5 Y5 ; Move Head to front left
G92 E0 ; Zero Extruder
G1 F200 E20 ; Prime the extruder
G92 E0 ; Zero Extruder
M83 ;relative extrusion mode
G1 F1500 E-2.5
;LAYER_COUNT:128
;LAYER:0
M107
G0 F1800 X87.452 Y82.433 Z0.3
;TYPE:SKIRT
G1 F1500 E2.5
G1 F600 X87.849 Y82.073 E0.02674