Initial revision fan control via sysfs and PWM

This commit is contained in:
2025-11-13 00:47:47 +01:00
parent fb21f1cda1
commit c5336db56b
6 changed files with 1482 additions and 0 deletions

23
fancontrol/Cargo.toml Normal file
View File

@@ -0,0 +1,23 @@
[package]
name = "fancontrol"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "amd_gpu_control"
path = "src/main.rs"
[[bin]]
name = "test_app"
path = "src/test_app.rs"
[dependencies]
config = "0.14"
toml = "0.5"
tempdir = "0.3"
serde = { version = "1.0", features = ["derive"] }
#tokio = { version = "1", features = ["full"] }
chrono = "0.4"
signal-hook = "0.3"