Example #1
0
 public static string GetTempConName(TempConType tempcon)
 {
     switch (tempcon)
     {
         case TempConType.LCI_CU109:
             return "LCI CU-109";
     }
     return "Unknown Temp Controller";
 }
Example #2
0
 public smbTempController(TempConType tempcon, string port)
 {
     m_port = port;
     m_serialport = new SerialPort(port);
 }