Display second control for fan
-
I have two mold fans, both of which are also running, but the control is only displayed for one in the overview. How can I display the control for the second fan in the overview?
-
How do you have the fans configured in config.g?
-
@phaedrux Here is my code in confit.g:
; Fans
M950 F0 C"fan1" Q500 ; create fan 0 on pin fan1 and set its frequency
M106 P0 S1 H0 T45 ; set fan 0 value. Thermostatic control is turned on
M950 F1 C"fan0" Q500 ; create fan 1 on pin fan0 and set its frequency
M106 P0 S1 H0 T45 ; set fan 1 value. Thermostatic control is turned on -
@axiom said in Display second control for fan:
@phaedrux Here is my code in confit.g:
; Fans
M950 F0 C"fan1" Q500 ; create fan 0 on pin fan1 and set its frequency
M106 P0 S1 H0 T45 ; set fan 0 value. Thermostatic control is turned on
M950 F1 C"fan0" Q500 ; create fan 1 on pin fan0 and set its frequency
M106 P0 S1 H0 T45 ; set fan 1 value. Thermostatic control is turned onand this ist the overview
-
@phaedrux
and this is my overview
-
@axiom thermostatic fans aren't controllable
What do you have in your config for M563? -
@jay_s_uk
; Tools
M563 P0 S"Filament" D0 H1 F0 ; define tool 0
G10 P0 X0 Y0 Z0 ; set tool 0 axis offsets
G10 P0 R0 S0 ; set initial tool 0 active and standby temperatures to 0C
M563 P1 S"Stuetzkonstruktion" D1 H2 F0 ; define tool 1
G10 P1 X0 Y0 Z0 ; set tool 1 axis offsets
G10 P1 R0 S0 ; set initial tool 1 active and standby temperatures to 0C -
@axiom you've defined F0 to the tool when it's none controllable.
Either remove the F0 from the M563 and let the firmware turn them on above 45 degrees or modify the M106 for each fan and make them none thermostatic by remove the T45 and changing H1 to H-1 -
@jay_s_uk But why does fan 1 have automatic control and a manual display on the display at the same time?
-
@axiom by adding f0 to the M563 you've mapped the fan to the tool as the "tool" fan, which is the part cooling fan for that tool. Its mainly for multi tool setups.
Fans that are thermostatic, when setup correctly, aren't displayed in DWC and aren't controllable -
@jay_s_uk I would also like to be able to manually adjust the fan speed when printing...
-
@axiom then make them none thermostatic and control them with gcode. its one or the other, not both