hddfancontrol 2.0.5

Daemon to regulate fan speed according to hard drive temperature on Linux
1
2
3
4
5
6
7
//! Device that generates heat and its sensor

mod drive;
mod hwmon;

pub(crate) use drive::Drive;
pub(crate) use hwmon::Hwmon;