21 lines
374 B
C#
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();
|
|
}
|
|
}
|
|
} |