diff --git a/README.md b/README.md index f75fec4..9ec2f17 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/icx3.c b/icx3.c index 7bda775..96a965e 100644 --- a/icx3.c +++ b/icx3.c @@ -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); }