1.1 --- a/Hardware/ISensor.cs Wed Aug 31 22:48:49 2011 +0000
1.2 +++ b/Hardware/ISensor.cs Sat Dec 31 17:31:04 2011 +0000
1.3 @@ -42,15 +42,16 @@
1.4 namespace OpenHardwareMonitor.Hardware {
1.5
1.6 public enum SensorType {
1.7 - Voltage,
1.8 - Clock,
1.9 - Temperature,
1.10 - Load,
1.11 - Fan,
1.12 - Flow,
1.13 - Control,
1.14 - Level,
1.15 - Power
1.16 + Voltage, // V
1.17 + Clock, // MHz
1.18 + Temperature, // °C
1.19 + Load, // %
1.20 + Fan, // RPM
1.21 + Flow, // L/h
1.22 + Control, // %
1.23 + Level, // %
1.24 + Power, // W
1.25 + Data, // GB = 2^30 Bytes
1.26 }
1.27
1.28 public struct SensorValue {