mirror of
https://github.com/hholtmann/smcFanControl.git
synced 2025-11-04 19:49:16 +01:00
Merge pull request #111 from snipem/master
Change naming of "actual" to "current"
This commit is contained in:
@ -42,7 +42,7 @@ To manually query and control:
|
||||
FNum - tells you how many fans are in the system
|
||||
|
||||
To read data from each fan:
|
||||
F0Ac - Fan actual speed
|
||||
F0Ac - Fan current speed
|
||||
F0Mn - Fan minimum speed
|
||||
F0Mx - Fan maximum speed
|
||||
F0Sf - Fan safe speed
|
||||
|
||||
@ -564,7 +564,7 @@ kern_return_t SMCPrintFans(void)
|
||||
}
|
||||
sprintf(key, "F%cAc", fannum[i]);
|
||||
SMCReadKey(key, &val);
|
||||
printf(" Actual speed : %.0f\n", getFloatFromVal(val));
|
||||
printf(" Current speed : %.0f\n", getFloatFromVal(val));
|
||||
sprintf(key, "F%cMn", fannum[i]);
|
||||
SMCReadKey(key, &val);
|
||||
printf(" Minimum speed: %.0f\n", getFloatFromVal(val));
|
||||
|
||||
Reference in New Issue
Block a user