Notifications
Clear all

Pinda drift  

  RSS
jkoether
(@jkoether)
Active Member
Pinda drift

How much drift is normal for pinda sensor?  I have printing a lot of the few weeks or so and I keep having to decrease the z-offset (more negative).  I have had to reduce it by .010 mm at three times over the last couple weeks.  Its seems very tight so I don't think it is moving, maybe there some creep occuring in the extruder?

Posted : 11/12/2019 12:23 am
--
 --
(@)
Illustrious Member
RE: Pinda drift

PINDA temp drift can be huge.  I use gcode to minimize the effect. 

There is also a known problem with MK3S printer parts warping, especially the PINDA holder.  Mostly common when the printer is in an enclosure and users printing hot: ABS/Nylon/etc..

M115 U3.7.1 ; tell printer latest fw version
G90 ; use absolute coordinates
M83 ; extruder relative mode

; cool down PINDA
M106 S255 ; turn on fan
M104 S0 ; turn off nozzle heat
M140 S0 ; turn off bed heat
M860 S35 ; wait until PINDA is less than 35C
M106 S0 ; turn off fan

; preheat nozzle to a low temp, get plastic mushy before driving into the bed with G28
M140 S[first_layer_bed_temperature] ; set bed temp
M109 S175 ; wait for extruder temp
M190 S[first_layer_bed_temperature] ; set & wait for bed temp
G28 W ; home all without mesh bed level

; soak PINDA then level
G0 X50 Y50 Z1 F3000; this is a good PINDA heating position
M860 S37.5 ; wait until PINDA is >= 35C in winter, 37.5C spring/fall, 40C summer
G80 N7 R5; mesh bed leveling

; heat to extrude temp
G0 X0 Y-3.0 Z10 F3000; this is a good nozzle heating position
M109 S[first_layer_temperature] ; set & wait extruder temp

; purge
G1 Y-3.0 Z0.20 F1000.0 ; go outside print area
G92 E0.0
G1 X1.0 Y-1.0 E0.5 F500.0 ; scribble 1
G1 X1.0 Y-3.0 E0.5 F500.0 ; scribble 1
G1 X2.0 Y-1.0 E0.5 F500.0 ; scribble 2
G1 X2.0 Y-3.0 E0.5 F500.0 ; scribble 2
G1 X3.0 Y-1.0 E0.5 F500.0 ; scribble 3
G1 X3.0 Y-3.0 E0.5 F500.0 ; scribble 3
G1 X60.0 E9.0 F1000.0 ; intro line
G1 X100.0 E12.0 F1200.0 ; intro line
G1 X97.0 F2000.0 ; wipe left
G1 X105.0 F3000.0 ; wipe right
G92 E0.0

M221 S{if layer_height<0.075}100{else}95{endif}

; end Printer Start gcode

 

Posted : 11/12/2019 6:58 pm
Share: