Added a first implementation for the Heatmaster fan controller.
3 Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 The contents of this file are subject to the Mozilla Public License Version
6 1.1 (the "License"); you may not use this file except in compliance with
7 the License. You may obtain a copy of the License at
9 http://www.mozilla.org/MPL/
11 Software distributed under the License is distributed on an "AS IS" basis,
12 WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 for the specific language governing rights and limitations under the License.
15 The Original Code is the Open Hardware Monitor code.
17 The Initial Developer of the Original Code is
18 Michael Möller <m.moeller@gmx.ch>.
19 Portions created by the Initial Developer are Copyright (C) 2010
20 the Initial Developer. All Rights Reserved.
24 Alternatively, the contents of this file may be used under the terms of
25 either the GNU General Public License Version 2 or later (the "GPL"), or
26 the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 in which case the provisions of the GPL or the LGPL are applicable instead
28 of those above. If you wish to allow use of your version of this file only
29 under the terms of either the GPL or the LGPL, and not to allow others to
30 use your version of this file under the terms of the MPL, indicate your
31 decision by deleting the provisions above and replace them with the notice
32 and other provisions required by the GPL or the LGPL. If you do not delete
33 the provisions above, a recipient may use your version of this file under
34 the terms of any one of the MPL, the GPL or the LGPL.
39 using System.Collections.Generic;
40 using System.IO.Ports;
42 using System.Threading;
44 namespace OpenHardwareMonitor.Hardware.Heatmaster {
45 internal class HeatmasterGroup : IGroup {
47 private List<Heatmaster> hardware = new List<Heatmaster>();
48 private StringBuilder report = new StringBuilder();
50 private static string ReadLine(SerialPort port, int timeout) {
52 StringBuilder builder = new StringBuilder();
54 while (port.BytesToRead > 0) {
55 byte b = (byte)port.ReadByte();
57 case 0xAA: return ((char)b).ToString();
58 case 0x0D: return builder.ToString();
59 default: builder.Append((char)b); break;
65 throw new TimeoutException();
68 public HeatmasterGroup(ISettings settings) {
70 string[] portNames = SerialPort.GetPortNames();
71 for (int i = portNames.Length - 1; i >= 0; i--) {
74 SerialPort serialPort =
75 new SerialPort(portNames[i], 38400, Parity.None, 8, StopBits.One);
76 serialPort.NewLine = ((char)0x0D).ToString();
79 report.Append("Port Name: "); report.AppendLine(portNames[i]);
83 } catch (UnauthorizedAccessException) {
84 report.AppendLine("Exception: Access Denied");
87 if (serialPort.IsOpen) {
88 if (serialPort.CtsHolding) {
89 serialPort.DiscardInBuffer();
90 serialPort.DiscardOutBuffer();
91 serialPort.Write(new byte[] { 0xAA }, 0, 1);
94 while (serialPort.BytesToRead == 0 && j < 10) {
98 if (serialPort.BytesToRead > 0) {
100 while (serialPort.BytesToRead > 0 && !flag) {
101 flag |= (serialPort.ReadByte() == 0xAA);
104 serialPort.WriteLine("[0:0]RH");
109 string line = ReadLine(serialPort, 100);
110 if (line.StartsWith("-[0:0]RH:")) {
111 int.TryParse(line.Substring(9), out revision);
116 isValid = (revision == 770);
118 report.Append("Status: Wrong Hardware Revision " +
119 revision.ToString());
121 } catch (TimeoutException) {
122 report.AppendLine("Status: Timeout Reading Revision");
125 report.AppendLine("Status: Wrong Startflag");
128 report.AppendLine("Status: No Response");
131 report.AppendLine("Status: Not Clear to Send");
133 serialPort.DiscardInBuffer();
135 serialPort.Dispose();
137 report.AppendLine("Status: Port not Open");
140 report.AppendLine("Status: OK");
141 hardware.Add(new Heatmaster(portNames[i], settings));
144 } catch (Exception e) {
145 report.AppendLine(e.ToString());
151 public IHardware[] Hardware {
153 return hardware.ToArray();
157 public string GetReport() {
158 if (report.Length > 0) {
159 report.Insert(0, "Serial Port Heatmaster" + Environment.NewLine +
160 Environment.NewLine);
162 return report.ToString();
167 public void Close() {
168 foreach (Heatmaster heatmaster in hardware)