lemp9: lower maximum fan speed

This commit is contained in:
Jeremy Soller 2020-04-17 15:27:33 -06:00
parent 357fae86fc
commit 53d4c31798
No known key found for this signature in database
GPG Key ID: E988B49EE78A7FB1

View File

@ -35,10 +35,10 @@ struct FanPoint {
// Fan curve with temperature in degrees C, duty cycle in percent
struct FanPoint __code FAN_POINTS[] = {
FAN_POINT(65, 40),
FAN_POINT(70, 55),
FAN_POINT(75, 75),
FAN_POINT(80, 100)
FAN_POINT(70, 40),
FAN_POINT(75, 50),
FAN_POINT(80, 60),
FAN_POINT(90, 60)
};
// Get duty cycle based on temperature, adapted from