Learn me M563
-
Being new to everything 3D-printer related, while building my coreXY Duet3 6HC (firmware 3.3) printer, I took guidance from here and there. One line I have in config.g is: M563 P0 D0 H1 F0:1
I understand that M563 defines a tool. My printer is very traditional in that the bed heater is H0, hot end heater H1, and the extruder drive is E0. The part cooling fan is F0, and F1 is the hotend fan.
So M563 P0 D0 H1 F0:1 appears to be defining tool P0 to be extruder 0, and is associated with heater 1. That makes sense, but I'm confused by F0:1, which seems to associate both the bed and hotend fans with the extruder. Am I reading that correctly? I expected that since F0 is the part cooling fan, then just "F1" would be part of the definition.
What am I not understanding? I tried changing it from F0:1 to F1, but it didn't appear to change the operation of anything, which just confuses me further.
-
@kb58 F0:1 should be changed to F0. Never associate thermostatically controlled fans with a tool
-
@jay_s_uk My confusion is that the above command seems to associate the extruder to the parts cooling fan, or am I misunderstanding?
[edit] You are right, from here: https://duet3d.dozuki.com/Wiki/Gcode#Section_M563_Define_or_remove_a_tool, it says to use F0, so I guess that's that. I have a lot to learn. and thank you!
-
@kb58 said in Learn me M563:
@jay_s_uk My confusion is that the above command seems to associate the extruder to the parts cooling fan, or am I misunderstanding?
It does associate the tool (extruder) with the parts cooling fan. Typically the fan is mounted to the tool in some fashion so when the tool is printing the fan can be used to cool the part being printed.
The hotend fan is mounted to the hotend and is associated with the hotend temp sensor. So when the hotend temp sensor reaches the temp set in the fan config the fan turns on.
Frederick