Added the NCT6771F and NCT6776F chips to the lm-sensors interface.
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;