forked from rossmann-engineering/EasyModbusTCP.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettings.cs
72 lines (67 loc) · 1.71 KB
/
Settings.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel;
namespace EasyModbusServerSimulator
{
public class Settings
{
public enum ModbusType { ModbusTCP, ModbusUDP, ModbusRTU };
private int port = 502;
[DescriptionAttribute("Listenig Port for Modbus-TCP or Modbus-UDP Server")]
[CategoryAttribute("ModbusProperties")]
public int Port
{
get
{
return port;
}
set
{
port = value;
}
}
private ModbusType modbusType;
[DescriptionAttribute("Activate Modbus UDP; Disable Modbus TCP")]
[CategoryAttribute("ModbusProperties")]
public ModbusType ModbusTypeSelection
{
get
{
return modbusType;
}
set
{
modbusType = value;
}
}
private string comPort;
[DescriptionAttribute("ComPort Used for Modbus RTU connection ")]
[CategoryAttribute("Modbus RTU Properties")]
public string ComPort
{
get
{
return comPort;
}
set
{
comPort = value;
}
}
private byte slaveAddress;
[DescriptionAttribute("UnitIdentifier (Slave address) for Modbus RTU connection")]
[CategoryAttribute("Modbus RTU Properties")]
public byte SlaveAddress
{
get
{
return slaveAddress;
}
set
{
slaveAddress = value;
}
}
}
}