Parent Directory
|
Revision Log
|
Patch
--- trunk/libThermoControl/Configuration.cs 2013/11/13 02:39:41 21 +++ trunk/libThermoControl/Configuration.cs 2013/11/13 02:43:01 22 @@ -17,6 +17,8 @@ public static int CurrentTemp { get { return ReadTemp(); } set { WriteTemp(value); } } + public static int ExternalTemp { get { return GetExternalTemp(); } } + public static readonly string THERMISTAT_DEVICE = ""; // 60 public static readonly int MIN_TEMP = 0; // 60 public static readonly int MAX_TEMP = 0; // 90 @@ -104,5 +106,10 @@ } return temp; } + + static int GetExternalTemp() + { + return 0; + } } }
ViewVC Help | |
Powered by ViewVC 1.1.22 |