Cura setting on klipper

voron 2.4 special edi…
R. pi4 + mks monsters8 v2
klippy (4).log (2.4 MB)

Hello everyone… Friends, Clipper does not apply the settings I made in Cura Slicer. It applies the settings we made in config.cfg. For example, whether the part fan is on or off… I select the part fan as off in the curada slicing settings. But when you start printing, the part fan comes on. I cannot turn off the fan neither on the computer nor on the clipper screen.

Describe your issue:

The start print macro is written/changed to only use that values.:

[gcode_macro START_PRINT]
variable_bed_temp = 60
variable_extruder_temp = 185
gcode = 
	
	M140 S{bed_temp}
	
	G90
	
	SET_GCODE_OFFSET Z=0.0
	
	G28
	
	G1 Z5 F3000
	
	G1 Z0.15 F300
	
	M190 S{bed_temp}
	
	M109 S{extruder_temp}
	
	G92 E0
	
	G1 Z2.0 F3000
	
	G1 X2.1 Y20 Z0.28 F5000.0
	
	G1 X2.1 Y200.0 Z0.28 F1500.0 E15
	
	G1 X2.4 Y200.0 Z0.28 F5000.0
	
	G1 X2.4 Y20 Z0.28 F1500.0 E30
	
	G92 E0
	
	G1 Z2.0 F3000
	
	M117 By your command!

Yes. I have already configured the macro settings according to my own system. For example, what I want to do is; Being able to change the fan speed while the printer continues writing parts. I turn off the fan setting while slicing. and applies the g-code macro while starting to print the part. but when he starts writing the track the fan doesn’t stop. It does not allow me to make adjustments from the console or the clipper screen.

It’s hard to understand what you’re trying to do, but if you mean you want to be able to manually control the fan while a macro is executing, you can’t do that. Any manual changes to the man settings will not take effect until after the macro has finished executing.

Please post a small sliced gcode file

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.