Jump to content

Min/Max values in SensorPanel


VeilSide

Recommended Posts

  • 4 months later...

This is literally the easiest thing to implement... and the only thing preventing me from using AIDA64 instead of HWINFO.

Why the reluctance? People have been asking for this since 2016 and it would be easier than telling people "It's not possible for the SensorPanel, but you can have that data either logged into a HTML or CSV log file".

Pseudo code... excluding UI Min/Max/Avg selector.

# Initialize variables to store min and max sensor
min_sensor = 1
max_sensor = 1

# Read from sensor
current_sensor = read_sensor()

# Check if current sensor is lower than current min
if current_sensor < min_sensor:
    min_sensor = current_sensor

# Check if current sensor is higher than current max
if current_sensor > max_sensor:
    max_sensor = current_sensor

  • Thanks 1
Link to comment
Share on other sites

On 3/10/2023 at 6:08 AM, r10 said:

This is literally the easiest thing to implement... and the only thing preventing me from using AIDA64 instead of HWINFO.

Why the reluctance? People have been asking for this since 2016 and it would be easier than telling people "It's not possible for the SensorPanel, but you can have that data either logged into a HTML or CSV log file".

Pseudo code... excluding UI Min/Max/Avg selector.

# Initialize variables to store min and max sensor
min_sensor = 1
max_sensor = 1

# Read from sensor
current_sensor = read_sensor()

# Check if current sensor is lower than current min
if current_sensor < min_sensor:
    min_sensor = current_sensor

# Check if current sensor is higher than current max
if current_sensor > max_sensor:
    max_sensor = current_sensor

This needs to happen. I love using AIDA64, but without this simple option and few more bits is incomplete.
It's been a while since they added any new features.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...