Duet Board Fan Control
-
Hi @deckingman,
Great article. Once I start with my bigger prints, I will probably be copying you with your motor heatsinks. They look the part. Has the driver heat flag implementation happened yet?
Kind Regards,
Sam -
I have found a post about it and how to do it. Should have searched a bit harder first. Will give it a go and see how I get on.
-
@samlogan87 Hi Sam. TBH I made a mistake and printed two of the motor mounts in PLA and these have still warped despite the fans and heat sinks. The other two that I printed with PETG are fine however. I think the ideal is to make motor mounts from metal if that's possible. Mine also act as belt tensioners so they can't be simple brackets. I don''t have access to metal fabrication facilities, bit I do have a 3D printer - hence the printed parts. But the thermistor stuck to a surface to thermostatically control a fan is still sound. I'm not sure what the high temperature warning flag on the drivers is set to but I think it's quite a high temperature so I prefer to have my fans coming on earlier.
Having said all that, the very simplest solution is to use a large, slow, 100 or 120mm PC cooling fan and have it run all the time. They use next to no power and you get get virtually silent ones these days. But then where is the fun in doing that?
-
@samlogan87 There is an open Pull Request from me that will implement a fourth condition on the driver's virtual heater that will indicate that they are powered. Once his has been merged you could do exactly what you asked for.
-
Hi @deckingman
Upon further thoughts, I probably won't have to worry about the motor cooling as my mounts are aluminum and so is the frame. They do get warm but I can still touch it so it would be under 40 degree.@wilriker I saw you had comment about that in another post. I look forward to that.
Kind Regards,
Sam -
@samlogan87 No you'll be fine then. The mounts and frame will help to conduct heat away, whereas my plastic ones act as insulators. Most steppers are rated to 80deg C as well, so they can get really hot but still be fine.
-
Hi @deckingman ,
Yeah I think I will leave them. I have another question for you now. This is what I have set up under heaters in my .config file:
M305 P101 X2 S"Duet Drivers" ;
M305 P102 X2 S"Duex2 Drivers" ;and under fans:
M106 P3 F100 L0.6 B1 T20:40 H100:101:102 C"Duet Fan"
When I did not have the M305 parameters there, the fan would work as it should based off lower temps that I put for the board temp just to make sure it works. As you can see the start temp is quite low (I will bump this up). However, since I have implemented the M305's, they are reading 2000 degrees and the fan is going full speed. I tried putting the standard thermistor parameters in as well as what I have above, and it has not helped.
Can you shed any light on this?
Regards,
Sam -
Actually I worked it out. I need to map the correct thermistor to the heater.
I now have under heaters;
M305 P101 X1001 S"Duet Drivers"
M305 P102 X1002 S"Duex2 Drivers"and under fans;
M106 P3 F100 L0.6 B1 T20:40 H100:101:102 C"Duet Fan"
Seems to work well and the wife will be happy once again as it is a bit quieter.
Kind Regards,
Sam -
@samlogan87 Glad you got it sorted.
-
@samlogan87 said in Duet Board Fan Control:
Actually I worked it out. I need to map the correct thermistor to the heater.
I now have under heaters;
M305 P101 X1001 S"Duet Drivers"
M305 P102 X1002 S"Duex2 Drivers"and under fans;
M106 P3 F100 L0.6 B1 T20:40 H100:101:102 C"Duet Fan"
Seems to work well and the wife will be happy once again as it is a bit quieter.
Kind Regards,
SamWill this work just the same for a Duex5.
-
@quadcells said in Duet Board Fan Control:
@samlogan87 said in Duet Board Fan Control:
Actually I worked it out. I need to map the correct thermistor to the heater.
I now have under heaters;
M305 P101 X1001 S"Duet Drivers"
M305 P102 X1002 S"Duex2 Drivers"and under fans;
M106 P3 F100 L0.6 B1 T20:40 H100:101:102 C"Duet Fan"
Seems to work well and the wife will be happy once again as it is a bit quieter.
Kind Regards,
SamWill this work just the same for a Duex5.
Assigning fans and thermistors is the same procedure for the Duet main board, the Duex2 expansion board and the Duex5 expansion board.
-
Thanks,
I'll give it a go.