Hardware/Mainboard/Model.cs
author moel.mich
Mon, 24 May 2010 15:27:46 +0000
changeset 126 2354fdb91ac4
child 130 80065ab20b84
permissions -rw-r--r--
Extended the ITE super I/O voltage reading by adding hidden voltage sensors for unknown channels. Added a few known DFI and Gigabyte mainboard voltage configurations.
moel@126
     1
using System;
moel@126
     2
using System.Collections.Generic;
moel@126
     3
using System.Text;
moel@126
     4
moel@126
     5
namespace OpenHardwareMonitor.Hardware.Mainboard {
moel@126
     6
moel@126
     7
  public enum Model {
moel@126
     8
    // DFI
moel@126
     9
    LP_BI_P45_T2RS_Elite,
moel@126
    10
    LP_DK_P55_T3eH9,    
moel@126
    11
moel@126
    12
    // Gigabyte
moel@126
    13
    EP45_DS3R,
moel@126
    14
    GA_MA785GMT_UD2H,
moel@126
    15
    P35_DS3,
moel@126
    16
moel@126
    17
    // Unknown
moel@126
    18
    Unknown    
moel@126
    19
  }
moel@126
    20
}