Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joshuabach/clevo-fan
Automatically manage fan duty for Clevo-type notebooks using Linux kernels EC interface
https://github.com/joshuabach/clevo-fan
Last synced: 24 days ago
JSON representation
Automatically manage fan duty for Clevo-type notebooks using Linux kernels EC interface
- Host: GitHub
- URL: https://github.com/joshuabach/clevo-fan
- Owner: joshuabach
- License: gpl-3.0
- Created: 2022-01-04T16:02:55.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-04T16:13:28.000Z (almost 3 years ago)
- Last Synced: 2024-10-14T08:44:02.139Z (2 months ago)
- Language: Rust
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.txt
- License: LICENSE
Awesome Lists containing this project
README
clevo-fan - Automatically manage fan duty
Inspired by: https://github.com/SkyLandTW/clevo-indicator
You probably need to `modprobe ec_sys` before running.
This periodicaly reads the core temperature from the kernels EC interface and updates the
fan duty based on it. Different policies, implemented as mathematic functions are
available, to determine the fan duty.Some options can be used to try to remove temporary spikes from and generally smoothen the
temperature before calulating the fan duty based on it. This helps reduce fluctuation in
the fan activity. Some options also directly affect the fan curve.Once the fan control loop is running, this command won't fail. Every error is handled, so
that the fan never gets unattended: When failing to read the temperature, an infinitely
high temperature is assumed to stay on the safe side. When the fan duty cannot be set,
the cycle is skipped and setting it is tried again using the next queried temperature.
All these error conditions are reported to stderr. Any errors writing to stderr (or to
stdout) are ignored.USAGE:
clevo-fan auto [FLAGS] [OPTIONS] --exp --linear --squareFLAGS:
--exp Determine fan duty as an exponential function of the core temperature
-h, --help Prints help information
--linear Determine fan duty as a linear function of the core temperature
--monitor Monitor temperature and fan duty curves
--square Determine fan duty as a quadratic function of the core temperature
-V, --version Prints version informationOPTIONS:
--exp-base
Set base of the fan duty function [default: e] [possible values: 2, e]
--exp-factor
Set fan duty factor for exponential function [default: 1]
--linear-offset
Set y-axis offset of the fan duty function [default: 0.0]
--linear-slope
Set slope of the fan duty function [default: 1.0]
--max-unchanged-cycles
Maximum number of consequtive fan duty changes to ignore [default: 10]
--min-fan-change
Only apply fan duty changes smaller than this value [default: 0.0]-a, --moving-average
Apply moving average to temperature curve
-m, --moving-median
Apply moving median to temperature curve
-i, --polling-interval
Update interval, in milliseconds [default: 500]
--square-factor
Set fan duty factor for square function [default: 0.01]