Change actual to current

This commit is contained in:
Matthias Küch
2020-09-25 15:24:16 +02:00
parent 875c68b0d3
commit d10498f2b3
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ To manually query and control:
FNum - tells you how many fans are in the system FNum - tells you how many fans are in the system
To read data from each fan: To read data from each fan:
F0Ac - Fan actual speed F0Ac - Fan current speed
F0Mn - Fan minimum speed F0Mn - Fan minimum speed
F0Mx - Fan maximum speed F0Mx - Fan maximum speed
F0Sf - Fan safe speed F0Sf - Fan safe speed

View File

@ -564,7 +564,7 @@ kern_return_t SMCPrintFans(void)
} }
sprintf(key, "F%cAc", fannum[i]); sprintf(key, "F%cAc", fannum[i]);
SMCReadKey(key, &val); SMCReadKey(key, &val);
printf(" Actual speed : %.0f\n", getFloatFromVal(val)); printf(" Current speed : %.0f\n", getFloatFromVal(val));
sprintf(key, "F%cMn", fannum[i]); sprintf(key, "F%cMn", fannum[i]);
SMCReadKey(key, &val); SMCReadKey(key, &val);
printf(" Minimum speed: %.0f\n", getFloatFromVal(val)); printf(" Minimum speed: %.0f\n", getFloatFromVal(val));