Detailed explanation of the code for reading COM PORT in C#

黄舟
Release: 2017-02-28 11:26:56
Original
1997 people have browsed it

C# Read COM PORT

Refer to the MSDN example:

https://msdn.microsoft.com/en-us/library/system.io.ports.serialport.aspx

Still doesn’t work, you need to add this line of code:

mySerialPort.DtrEnable = true;
Copy after login

DtrEnable attribute description:

Gets or sets a value that enables the Data Terminal Ready (DTR) signal during serial communication.
Copy after login

demo code:

public class COMPortListener
    {        private static ILog logger = LogManager.GetLogger(typeof (COMPortListener));        
    #region single instance
        private COMPortListener()        
        {
        }        
        static COMPortListener()        
        {

        }       
         private static COMPortListener _instance = new COMPortListener();       
         public static COMPortListener Instance { get { return _instance; } }        
         #endregion

        public Action<string> OnDataReceived;        
        public void SerialPortListenAsync()        
        {            
        if (OnDataReceived == null)
            {               
             throw new InvalidOperationException("must set callback [OnDataReceived] first.");
            }

            Task.Run(() =>
            {                
            var mySerialPort = new SerialPort(ConfigurationManager.AppSettings["COM_PORT"]);

                mySerialPort.BaudRate = 9600;
                mySerialPort.Parity = Parity.None;
                mySerialPort.StopBits = StopBits.One;
                mySerialPort.DataBits = 8;
                mySerialPort.Handshake = Handshake.None;
                mySerialPort.RtsEnable = true;
                mySerialPort.DtrEnable = true;

                mySerialPort.ReadTimeout = 500;

                mySerialPort.ErrorReceived += (sender, args) =>
                {
                    Console.WriteLine("######error");
                    Console.WriteLine(args.EventType);
                };
                mySerialPort.Open();
                logger.Info("####COM PORT opened...");                
                while (true)
                {                    
                try
                    {                        
                    string message = mySerialPort.ReadLine();
                        OnDataReceived(message);
                        Task.Delay(500);
                    }                    
                    catch (TimeoutException ex)
                    {                        
                    //do nothing
                    }
                }

            });

        }
    }
Copy after login

That’s it C# Read the detailed explanation of the COM PORT code. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!