You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi. First of all, thank you for this small program, it is really useful for my Clevo N150RD, in which the fan can be a little noisy if even under no heavy load.
Under your wiki you state we can set the fan speed to 40%. I reviewed your code and you have a condition:
if (duty_percentage < 60 || duty_percentage > 100)
{
printf("Wrong fan duty to write: %d\n", duty_percentage);
return EXIT_FAILURE;
}
My question is if we can indeed use 40% and 50% safely. Is there a reason you declared 60% as minimum in your code? If it is safe I can change the code to suit my needs. Thank you.
The text was updated successfully, but these errors were encountered:
Hi. First of all, thank you for this small program, it is really useful for my Clevo N150RD, in which the fan can be a little noisy if even under no heavy load.
Under your wiki you state we can set the fan speed to 40%. I reviewed your code and you have a condition:
if (duty_percentage < 60 || duty_percentage > 100)
{
printf("Wrong fan duty to write: %d\n", duty_percentage);
return EXIT_FAILURE;
}
My question is if we can indeed use 40% and 50% safely. Is there a reason you declared 60% as minimum in your code? If it is safe I can change the code to suit my needs. Thank you.
The text was updated successfully, but these errors were encountered: