(11-21-2018, 05:28 PM)stFfn Wrote: ahm.. ok
so what would you change?
please give me the numbers.. im not as good with these calculations
heheh,
You changed the '
MAX_FAN_PWM' to 150, so it will max out at 150, its the beginning..
For the fan to run continuously, without stop,
Maybe the best would be to
just comment the stop code( with
"--
" before it like you see below ), at almost the end of file:
Code:
-- Sleeping with Fan OFF, until next cicle
-- sleep( PROFILE:getQtimer( TEMP ) )
(...OTHER CODE ...)
-- Stop Fan
-- setFanpwm( 0 )
The fan will not stop in this way.. and you can lower the '
MAX_FAN_PWM' even more..it you want..
But in my opinion you should not touch '
MIN_FAN_PWM', because its the minimum..bellow that, the fan can stop depending of fan type..
It varies a lot..
For example:
in a fan 10mm, this value would be around 30-35 has minimum..
in a 20 mm fan, it would be at least between 35-40
I don't know the value for the NAS Fan case..., but 40 seems nice to me has minimum...
Because of that I used 40 for all, which is not so above 30, and more fans could be running with it..
Right now you are with a Function like this:
So with a max temp of 60C, you will get 150 PWM.