All Downloads are FREE. Search and download functionalities are using the official Maven repository.

oshi.hardware.Sensors Maven / Gradle / Ivy

package oshi.hardware;

import java.io.Serializable;

/**
 * @author angju
 * 
 */
public interface Sensors extends Serializable {
    /**
     * CPU Temperature
     *
     * @return CPU Temperature in degrees Celsius if available, 0 otherwise.
     */
    double getCpuTemperature();

    /**
     * Fan speeds
     *
     * @return Speed in rpm for all fans. May return empty array if no fans
     *         detected or 0 fan speed if unable to measure fan speed.
     */
    int[] getFanSpeeds();

    /**
     * CPU Voltage
     *
     * @return CPU Voltage in Volts if available, 0 otherwise.
     */
    double getCpuVoltage();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy