Formatting change.

This commit is contained in:
moosecrap 2025-01-30 06:19:18 -08:00
parent 906857ed82
commit 9f29076d52
2 changed files with 13 additions and 13 deletions

View File

@ -45,19 +45,19 @@ Read sensors:
```text
$ ./evga-icx
#0: EVGA GeForce RTX 3090 FTW3 Ultra v2 (/dev/i2c-3) @ c:00.0
Fan 0: 1094 RPM (36/0%, Auto)
Fan 1: 1164 RPM (38/0%, Auto)
Fan 2: 1161 RPM (38/0%, Offset)
Fan 0: 1934 RPM (64/0%, Auto)
Fan 1: 1930 RPM (64/0%, Auto)
Fan 2: 1944 RPM (64/0%, Offset)
Ext. fan: 0 RPM (0/0%, Offset)
GPU2: 35.8 C
MEM1: 35.3 C
MEM2: 35.6 C
MEM3: 35.9 C
PWR1: 35.0 C
PWR2: 35.6 C
PWR3: 36.3 C
PWR4: 36.9 C
PWR5: 36.3 C
GPU2: +64.1°C
MEM1: +62.2°C
MEM2: +58.2°C
MEM3: +62.2°C
PWR1: +54.3°C
PWR2: +59.4°C
PWR3: +66.0°C
PWR4: +64.3°C
PWR5: +57.6°C
```
Set external fan to follow Nvidia driver controlled speed with a -500 RPM offset:

2
icx3.c
View File

@ -93,7 +93,7 @@ void print_icx3_temps(char *i2c_dev_path)
cur_data = (short)(temp_sensors->data[2*i+1] << 8) | (short)(temp_sensors->data[2*i]);
/* temp is reported in tenths of deg C */
cur_temp = (float)cur_data/10;
printf("%s: %.1f C\n",
printf("%s: %+.1f°C\n",
icx3_temp_sensor_names[i],
cur_temp);
}