DataType.cs 308 B

12345678910111213141516
  1. namespace Houdar.PLC.Driver.Simenss.Protocol.Common
  2. {
  3. public enum DataType
  4. {
  5. Bit = 0x01,
  6. Byte = 0x02,
  7. Char = 0x03,
  8. Word = 0x04,
  9. Int = 0x05,
  10. DWord = 0x06,
  11. DInt = 0x07,
  12. Real = 0x08,
  13. Counter = 0x1C,
  14. Timer = 0x1D,
  15. }
  16. }