Skip to content

Commit 8036ea2

Browse files
authored
Restore fan control for IT8696E + make the 0 values array specific to the X870 Aorus elite WIFI7 (#1812)
* Make the 0 values array specific to the X870 Aorus elite WIFI7 * Update IT87XX.cs * Update IT87XX.cs * Update IT87XX.cs
1 parent 91f046c commit 8036ea2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • LibreHardwareMonitorLib/Hardware/Motherboard/Lpc

LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/IT87XX.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public IT87XX(Chip chip, ushort address, ushort gpioAddress, byte version, Mothe
7575
{
7676
Chip.IT8665E or Chip.IT8625E => new byte[] { 0x15, 0x16, 0x17, 0x1e, 0x1f, 0x92 },
7777
Chip.IT8792E => new byte[] { 0x15, 0x16, 0x17 },
78-
Chip.IT8696E => new byte[] { 0, 0, 0, 0, 0 },
78+
Chip.IT8696E when motherboard.Model == Model.X870_AORUS_ELITE_WIFI7 => new byte[] { 0, 0, 0, 0, 0, 0 },
7979
_ => new byte[] { 0x15, 0x16, 0x17, 0x7f, 0xa7, 0xaf }
8080
};
8181

@@ -162,8 +162,8 @@ Chip.IT8631E or
162162
case Chip.IT8696E:
163163
Voltages = new float?[10];
164164
Temperatures = new float?[6];
165-
Fans = new float?[5];
166-
Controls = new float?[5];
165+
Fans = new float?[6];
166+
Controls = new float?[6];
167167
break;
168168

169169
case Chip.IT87952E:

0 commit comments

Comments
 (0)