Sensors can now be displayed in FrontView.
3 This Source Code Form is subject to the terms of the Mozilla Public
4 License, v. 2.0. If a copy of the MPL was not distributed with this
5 file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 Copyright (C) 2010-2014 Michael Möller <mmoeller@openhardwaremonitor.org>
11 namespace OpenHardwareMonitor.Hardware {
13 public enum ControlMode {
19 public interface IControl {
21 Identifier Identifier { get; }
23 ControlMode ControlMode { get; }
25 float SoftwareValue { get; }
29 float MinSoftwareValue { get; }
30 float MaxSoftwareValue { get; }
32 void SetSoftware(float value);