Wait for PINDA at 35°C
Hey there!
Since i was waiting for my PINDA to get 35°C befor i start a new print, i only get perfect layers. So I want to have that in the startscript.
Is there a M-code to tell the printer to wait for PINDA 35°C before start?
Like the M109 command.
Re: Wait for PINDA at 35°C
How do you know it is at 35? Is there an option to display this?
Re: Wait for PINDA at 35°C
How do you know it is at 35? Is there an option to display this?
Menu->Support->Temperatures
Re: Wait for PINDA at 35°C
I certainly preheat a180/60 and wait 13 minutes befor i start a print.
Re: Wait for PINDA at 35°C
I’m don’t know how to monitor the pinda temp value in the gcode, but here is my starting script for simplify 3D. I was having bad first layer issues until I tried this and they have been perfect ever since. This heats up to a set temp, pauses for 60 seconds to steady the temps, performs mesh bed level, and continues heating. Hope this helps!
M115 U3.1.2-RC1 ; tell printer latest fw version
G28 W ; home all without mesh bed level
M104 S150 T0 ; this will take the layer 1 temperature for extruder 0
M140 S[bed0_temperature] ; this will take the layer 1 temperature for bed 0
M109 S150 T0 ; wait for extruder temp
M190 S[bed0_temperature] ; wait for bed temp
G4 S60 ; wait 60 sec. for temp to stabilize
G80 ; mesh bed leveling
M104 S[extruder0_temperature] T0 ; this will take the layer 1 temperature for extruder 0
M109 S[extruder0_temperature] T0 ; wait for extruder temp
G1 Y-3.0 F1000.0 ; go outside printing area
G92 E0.0
G1 X60.0 E9.0 F1000.0 ; intro line
G1 X100.0 E12.5 F1000.0 ; intro line
G92 E0.0
Re: Wait for PINDA at 35°C
There's no built-in M code to do this, however user Brigandier has made a custom firmware that adds support for it. Note however that there are other aspects of that firmware build that are hotly debated.
Your best bet is to just sit tight for the next release from Prusa, where they will have dramatically revamped the z-axis adjustments based on PINDA temperature.
Re: Wait for PINDA at 35°C
Hey there!
Since i was waiting for my PINDA to get 35°C befor i start a new print, i only get perfect layers. So I want to have that in the startscript.
Is there a M-code to tell the printer to wait for PINDA 35°C before start?
Like the M109 command.
I wrote one: