mirror of
https://github.com/fbarresi/Sharp7.git
synced 2026-02-04 08:42:51 +00:00
16 lines
304 B
C#
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,
|
|
}
|
|
} |