AMDGPU Fan control service

Available commands:

amdfand set-automatic | set-manual [OPTIONS]

Optional arguments:

Usage

```bash cargo install argonfand

sudo argonfand monitor # print current temperature, current fan speed, min and max fan speed sudo argonfand service # check amdgpu temperature and adjust speed from config file ```

Config file

```toml

/etc/amdfand/config.toml

log_level = "Error" cards = ["card0"]

[[speed_matrix]] temp = 4.0 speed = 4

[[speed_matrix]] temp = 30.0 speed = 33

[[speed_matrix]] temp = 45.0 speed = 50

[[speed_matrix]] temp = 60.0 speed = 66

[[speed_matrix]] temp = 65.0 speed = 69

[[speed_matrix]] temp = 70.0 speed = 75

[[speed_matrix]] temp = 75.0 speed = 89

[[speed_matrix]] temp = 80.0 speed = 100 ```

License

This work is dual-licensed under Apache 2.0 and MIT. You can choose between one of them if you use this work.

SPDX-License-Identifier: Apache-2.0 OR MIT