Added the NCT6771F and NCT6776F chips to the lm-sensors interface.
authormoel.mich
Sun, 23 Jun 2013 19:10:28 +0000
changeset 4058eeac521b3b6
parent 404 1201889d413a
child 406 3890d78140c2
Added the NCT6771F and NCT6776F chips to the lm-sensors interface.
Hardware/LPC/LMSensors.cs
     1.1 --- a/Hardware/LPC/LMSensors.cs	Sun Jun 09 20:11:20 2013 +0000
     1.2 +++ b/Hardware/LPC/LMSensors.cs	Sun Jun 23 19:10:28 2013 +0000
     1.3 @@ -4,7 +4,7 @@
     1.4    License, v. 2.0. If a copy of the MPL was not distributed with this
     1.5    file, You can obtain one at http://mozilla.org/MPL/2.0/.
     1.6   
     1.7 -  Copyright (C) 2009-2012 Michael Möller <mmoeller@openhardwaremonitor.org>
     1.8 +  Copyright (C) 2009-2013 Michael Möller <mmoeller@openhardwaremonitor.org>
     1.9  	
    1.10  */
    1.11  
    1.12 @@ -62,6 +62,11 @@
    1.13                lmChips.Add(new LMChip(Chip.IT8718F, path)); break;
    1.14              case "it8720":
    1.15                lmChips.Add(new LMChip(Chip.IT8720F, path)); break;
    1.16 +            
    1.17 +            case "nct6775":
    1.18 +              lmChips.Add(new LMChip(Chip.NCT6771F, path)); break;
    1.19 +            case "nct6776":
    1.20 +              lmChips.Add(new LMChip(Chip.NCT6776F, path)); break;
    1.21  
    1.22              case "w83627ehf":
    1.23                lmChips.Add(new LMChip(Chip.W83627EHF, path)); break;