Hardware/Mainboard/Model.cs
author StephaneLenclud
Thu, 18 Apr 2013 23:25:10 +0200
branchMiniDisplay
changeset 444 9b09e2ee0968
parent 359 30bb76a1da24
permissions -rw-r--r--
Front View plug-in does not init if no sensor added.
Fixing some format to make strings shorter.
Now trying to start SoundGraphAccess.exe process from same directory.
Packed mode now can display three sensors along with the current time.
     1 /*
     2  
     3   This Source Code Form is subject to the terms of the Mozilla Public
     4   License, v. 2.0. If a copy of the MPL was not distributed with this
     5   file, You can obtain one at http://mozilla.org/MPL/2.0/.
     6  
     7   Copyright (C) 2009-2012 Michael Möller <mmoeller@openhardwaremonitor.org>
     8 	
     9 */
    10 
    11 namespace OpenHardwareMonitor.Hardware.Mainboard {
    12 
    13   internal enum Model {
    14     // ASRock
    15     _880GMH_USB3,
    16     AOD790GX_128M,
    17     P55_Deluxe,
    18 
    19     // ASUS
    20     Crosshair_III_Formula,
    21     M2N_SLI_DELUXE,
    22     M4A79XTD_EVO,
    23     P5W_DH_Deluxe,    
    24     P6T,
    25     P6X58D_E,    
    26     P8P67,
    27     P8P67_EVO,
    28     P8P67_PRO,
    29     P8P67_M_PRO,
    30     P8Z77_V,
    31     P9X79,
    32     Rampage_Extreme,
    33     Rampage_II_GENE,
    34 
    35     // DFI
    36     LP_BI_P45_T2RS_Elite,
    37     LP_DK_P55_T3eH9,
    38 
    39     // ECS
    40     A890GXM_A,
    41 
    42     // EVGA
    43     X58_SLI_Classified,
    44 
    45     // Gigabyte
    46     _965P_S3,
    47     EP45_DS3R,
    48     EP45_UD3R,
    49     EX58_EXTREME,
    50     EX58_UD3R,
    51     G41M_Combo,
    52     G41MT_S2,
    53     G41MT_S2P,
    54     GA_970A_UD3,
    55     GA_MA770T_UD3,
    56     GA_MA770T_UD3P,
    57     GA_MA785GM_US2H,
    58     GA_MA785GMT_UD2H,    
    59     GA_MA78LM_S2H,    
    60     GA_MA790X_UD3P,
    61     H55_USB3,
    62     H55N_USB3,
    63     H61M_DS2_REV_1_2,
    64     H61M_USB3_B3_REV_2_0,
    65     H67A_UD3H_B3,
    66     H67A_USB3_B3,
    67     P35_DS3,
    68     P35_DS3L,    
    69     P55_UD4,
    70     P55A_UD3,
    71     P55M_UD4,
    72     P67A_UD3_B3,
    73     P67A_UD3R_B3,
    74     P67A_UD4_B3,
    75     P8Z68_V_PRO,
    76     X38_DS5,
    77     X58A_UD3R,
    78     Z68A_D3H_B3,
    79     Z68AP_D3,
    80     Z68X_UD3H_B3,
    81     Z68X_UD7_B3,
    82 
    83     // Shuttle
    84     FH67,
    85 
    86     // Unknown
    87     Unknown    
    88   }
    89 }