jl168 / open-hardware-monitor

Automatically exported from code.google.com/p/open-hardware-monitor
0 stars 0 forks source link

Feature Request: Option to control reset on close #546

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Current Situation:
When the application is closed all controls are set to the default. E.g. If the 
fan control has been set to manual it will be reset when the application is 
closed.

The logic which controls this behavior can be seen in the 
OpenHardwareMonitor.Hardware.Mainboard.SuperIOHardware class:

    public override void Close() {
      foreach (Sensor sensor in controls) {
        // restore all controls back to default
        superIO.SetControl(sensor.Index, null);
      }
      base.Close();
    }

Proposal:
Add setting to control this behavior.

Thank you.

Original issue reported on code.google.com by mbercht...@gmail.com on 14 Dec 2013 at 2:32