Dreamine.PLC.Omron.Fins 1.0.1
Dreamine.PLC.Omron.Fins 산업 자동화 및 I/O 기능을 제공합니다.
로딩중...
검색중...
일치하는것 없음
OmronFinsConnectionOptions.cs
이 파일의 문서화 페이지로 가기
2
11public sealed class OmronFinsConnectionOptions
12{
21 public string Host { get; set; } = "127.0.0.1";
22
31 public int Port { get; set; } = 9600;
32
42
51 public int ConnectTimeoutMs { get; set; } = 3000;
52
61 public int ReceiveTimeoutMs { get; set; } = 3000;
62
71 public int RetryCount { get; set; } = 1;
72
81 public byte DestinationNetwork { get; set; } = 0x00;
82
91 public byte DestinationNode { get; set; } = 0x00;
92
101 public byte DestinationUnit { get; set; } = 0x00;
102
111 public byte SourceNetwork { get; set; } = 0x00;
112
121 public byte SourceNode { get; set; } = 0x01;
122
131 public byte SourceUnit { get; set; } = 0x00;
132}