18 lines
336 B
C#
18 lines
336 B
C#
namespace CommonConsole
|
|
{
|
|
using OmniPlus;
|
|
|
|
public static class Program
|
|
{
|
|
public static void Main()
|
|
{
|
|
var connection = new OmniIrdaConnection("COM36");
|
|
|
|
connection.Open();
|
|
|
|
var alarmState = connection.ViewAlarmsState();
|
|
|
|
connection.Close();
|
|
}
|
|
}
|
|
} |