laatzen/Common/CommonConsole/Program.cs
2024-06-07 10:44:35 +02:00

21 lines
374 B
C#

namespace CommonConsole
{
using Common.Hardware.Interfaces.Ports.SIRT;
using System;
public static class Program
{
public static void Main()
{
var port = new SIRTPort("COM6");
port.Logging += Console.WriteLine;
port.Open();
Console.ReadKey();
port.Close();
}
}
}