29 releases

0.12.0 Nov 15, 2024
0.11.0 Jul 2, 2024
0.10.0 Jul 2, 2024
0.7.0 Aug 18, 2022
0.1.1 Nov 24, 2019

#54 in Hardware support

Download history 982/week @ 2024-09-21 609/week @ 2024-09-28 785/week @ 2024-10-05 644/week @ 2024-10-12 295/week @ 2024-10-19 457/week @ 2024-10-26 1026/week @ 2024-11-02 789/week @ 2024-11-09 659/week @ 2024-11-16 344/week @ 2024-11-23 337/week @ 2024-11-30 966/week @ 2024-12-07 593/week @ 2024-12-14 82/week @ 2024-12-21 262/week @ 2024-12-28 538/week @ 2025-01-04

1,682 downloads per month
Used in 3 crates

MIT license

275KB
6K SLoC

unsafe forbidden License

libmedium

A safe rust library to communicate with the sysfs interface of lm-sensors.

Usage

Just add this to your Cargo.toml file:

[dependencies]
libmedium = "0.12"

Cargo-Features

Standard features

  • writeable: Standard feature that enables all functions that write to sysfs. This includes setting pwm values and disabling sensors.
  • sync: Build synchronous versions of all sensors.
  • virtual_sensors: Feature that lets you create virtual sensors. Virtual sensors don't belong to sysfs but can be any file provided by a driver or the user.

Non standard features

  • uom_units: Sensor values are returned as types from the uom crate.
  • unrestricted_parsing: This feature allows parsing of paths other than '/sys/class/hwmon'. This should only be useful for testing and debugging.
  • async: Build asynchronous versions of all sensors.

Examples

  • Print the temperature of all the temp sensors in your system:
use libmedium::{
    parse_hwmons,
    sensors::sync_sensors::{temp::TempSensor, SyncSensor},
};

let hwmons = parse_hwmons().unwrap();
for hwmon in &hwmons {
    println!("hwmon{} with name {}:", hwmon.index(), hwmon.name());
    for (_, temp_sensor) in hwmon.temps() {
        let temperature = temp_sensor.read_input().unwrap();
        println!("\t{}: {}", temp_sensor.name(), temperature);
    }
}
  • Set the pwm value of all your pwm capable fans to full speed (this requires the writeable feature to not be disabled):
use libmedium::{
    parse_hwmons,
    sensors::sync_sensors::pwm::WriteablePwmSensor,
    units::{Pwm, PwmEnable},
};

let hwmons = parse_hwmons().unwrap();
for hwmon in &hwmons {
    for (_, pwm) in hwmon.writeable_pwms() {
        pwm.write_enable(PwmEnable::ManualControl).unwrap();
        pwm.write_pwm(Pwm::FULLSPEED).unwrap();
    }
}

License

This project is licensed under the MIT License - see the LICENSE file for details

Dependencies

~0–6MB
~26K SLoC