Need help with startup G-code, looking to set nozzle temperature lower during leveling and probing
 
Notifications
Clear all

Need help with startup G-code, looking to set nozzle temperature lower during leveling and probing  

  RSS
kevman
(@kevman)
Estimable Member
Need help with startup G-code, looking to set nozzle temperature lower during leveling and probing

Hi-

I'm trying to figure out the start up G-code for the MK4 with the latest firmware. It seems to have changed since my mk3s days , I can't figure out where to set the temperature lower during bed probing and leveling. Could someone point it out for me ? 

Posted : 08/12/2024 4:24 am
FoxRun3D
(@foxrun3d)
Famed Member
RE: Need help with startup G-code, looking to set nozzle temperature lower during leveling and probing

It's now based on filament types. Look for the following code and change values based on what filament you're using. The last number (170) is the default. 

M104 T0 S{((filament_notes[0]=~/.*HT_MBL10.*/) ? (first_layer_temperature[0] - 10) : (filament_type[0] == "PC" or filament_type[0] == "PA") ? (first_layer_temperature[0] - 25) : (filament_type[0] == "FLEX") ? 210 : (filament_type[0]=~/.*PET.*/) ? 175 : 170)} ; set extruder temp for bed leveling
M109 T0 R{((filament_notes[0]=~/.*HT_MBL10.*/) ? (first_layer_temperature[0] - 10) : (filament_type[0] == "PC" or filament_type[0] == "PA") ? (first_layer_temperature[0] - 25) : (filament_type[0] == "FLEX") ? 210 : (filament_type[0]=~/.*PET.*/) ? 175 : 170)} ; wait for temp

Formerly known on this forum as @fuchsr -- until all hell broke loose with the forum software...

Posted : 08/12/2024 11:01 am
Share: