Skip to content

Repository files navigation

SerialPortWatcher

MIT License

Detects serial port connection and disconnection events in Windows using WMI (Windows Management Instrumentation). This library monitors serial port availability in real-time, enabling dynamic response to new port connections and disconnections.

Installation

Install the NuGet package from here.

Usage/Examples

Here's an example of how to use SerialPortWatcher in your application:

namespace SerialPortWatcher.Example
{
    internal class Program
    {
        static void Main(string[] args)
        {
            SerialPortEventWatcher serialPortEventWatcher = new SerialPortEventWatcher();
            serialPortEventWatcher.PortConnected += SerialPortEventWatcher_PortConnected;
            serialPortEventWatcher.PortDisconnected += SerialPortEventWatcher_PortDisconnected;
            serialPortEventWatcher.Start();

            Console.WriteLine("Watching Serial Port Connect/Disconnect Events.");
            Console.ReadKey();

            serialPortEventWatcher.Stop();
            serialPortEventWatcher.Dispose();
        }

        private static void SerialPortEventWatcher_PortConnected(object? sender, SerialPortWatcherEventArgs e)
        {
            Console.WriteLine($"Serial Port Connected : {e.PortName}.");
        }
        private static void SerialPortEventWatcher_PortDisconnected(object? sender, SerialPortWatcherEventArgs e)
        {
            Console.WriteLine($"Serial Port Disconnected : {e.PortName}.");
        }
    }
}

About

Detect serial port connection and disconnection events in Windows using WMI and C#.

Topics

Resources

Stars

7 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages