Files
Sharp7/Sharp7/S7WordLength.cs
2020-06-05 17:19:30 +02:00

16 lines
304 B
C#

namespace Sharp7
{
public enum S7WordLength
{
Bit = 0x01,
Byte = 0x02,
Char = 0x03,
Word = 0x04,
Int = 0x05,
DWord = 0x06,
DInt = 0x07,
Real = 0x08,
Counter = 0x1C,
Timer = 0x1D,
}
}