using System.IO.Ports; using DH.Commons.Enums; using HslCommunication; namespace DH.Devices.PLC { public class PLCBase { /// /// 连接状态 /// public bool connected = false; /// /// 类型 /// public EnumPLCType PLCType=EnumPLCType.信捷XD_网口; /// /// 串口号 /// public string portName="COM1"; /// /// 波特率 /// public int baudRate = 9600; /// /// 数据位 /// public int dataBit = 8; /// /// 停止位 /// public StopBits stopBit = (StopBits)Enum.Parse(typeof(StopBits), "One"); /// /// 奇偶效验位 /// public Parity parity = (Parity)Enum.Parse(typeof(Parity), "None"); /// /// IP地址 /// public string IP = "192.168.6.6"; /// /// 端口号 /// public int Port = 502; /// /// 初始化 /// /// public virtual bool PLCConnect() { return false; } public virtual bool PLCDisConnect() { return false; } public virtual ushort ReadShort(string address) { return 0; } public virtual int ReadInt(string address) { return 0; } public virtual float ReadFloat(string address) { return 0; } public virtual bool ReadBool(string address) { return false; } public virtual bool WriteShort(string address, short value, bool waitForReply = true) { return false; } public virtual bool WriteInt(string address, int value, bool waitForReply = true) { return false; } public virtual bool WriteDInt(string address, int value, bool waitForReply = true) { return false; } public virtual bool WriteFloat(string address, float value, bool waitForReply = true) { return false; } public virtual bool WriteBool(string address, bool value, bool waitForReply = true) { return false; } } }