using NvAPIWrapper.Native.GPU;
namespace NvAPIWrapper.Native.Interfaces.GPU
{
///
/// Provides information about a single thermal sensor
///
public interface IThermalSensor
{
///
/// Internal, ADM1032, MAX6649...
///
ThermalController Controller { get; }
///
/// Current temperature value of the thermal sensor in degree Celsius
///
int CurrentTemperature { get; }
///
/// Maximum default temperature value of the thermal sensor in degree Celsius
///
int DefaultMaximumTemperature { get; }
///
/// Minimum default temperature value of the thermal sensor in degree Celsius
///
int DefaultMinimumTemperature { get; }
///
/// Thermal sensor targeted - GPU, memory, chipset, power supply, Visual Computing Device, etc
///
ThermalSettingsTarget Target { get; }
}
}