//-------------------------------------------------------------------------------------------------// public bool CreateConnection() { const string STRLOG_MethodName = "CreateConnection"; Logfile.WriteCalled(this.logLevel, STRLOG_ClassName, STRLOG_MethodName); bool success = false; try { this.tcpClient = new TcpClient(this.machineIP, this.machinePort); this.master = ModbusIpMaster.CreateTcp(this.tcpClient); this.acDrive = new ACDrive(this.master); this.dcDriveMut = new DCDriveMut(this.master); success = true; this.lastError = null; } catch (Exception ex) { this.lastError = ex.Message; Logfile.WriteError(ex.Message); } string logMessage = STRLOG_Success + success.ToString(); Logfile.WriteCompleted(this.logLevel, STRLOG_ClassName, STRLOG_MethodName, logMessage); return(success); }
//-------------------------------------------------------------------------------------------------// public bool CreateConnection() { const string STRLOG_MethodName = "CreateConnection"; Logfile.WriteCalled(STRLOG_ClassName, STRLOG_MethodName); bool success = false; try { this.tcpClient = new TcpClient(this.machineIP, this.machinePort); this.master = ModbusIpMaster.CreateTcp(this.tcpClient); this.acDrive = new ACDrive(this.master); this.powerMeter = new PowerMeter(this.master); success = true; this.lastError = null; } catch (Exception ex) { this.lastError = ex.Message; Logfile.WriteError(ex.Message); } string logMessage = STRLOG_Success + success.ToString(); Logfile.WriteCompleted(STRLOG_ClassName, STRLOG_MethodName, logMessage); return success; }