SiemensPLCS.cs 854 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace MECF.Framework.RT.Core.IoProviders.Siemens
  6. {
  7. /// <summary>
  8. /// 西门子的PLC类型,目前支持的访问类型
  9. /// </summary>
  10. public enum SiemensPLCS
  11. {
  12. /// <summary>
  13. /// 1200系列
  14. /// </summary>
  15. S1200 = 1,
  16. /// <summary>
  17. /// 300系列
  18. /// </summary>
  19. S300 = 2,
  20. /// <summary>
  21. /// 400系列
  22. /// </summary>
  23. S400 = 3,
  24. /// <summary>
  25. /// 1500系列PLC
  26. /// </summary>
  27. S1500 = 4,
  28. /// <summary>
  29. /// 200的smart系列
  30. /// </summary>
  31. S200Smart = 5,
  32. /// <summary>
  33. /// 200系统,需要额外配置以太网模块
  34. /// </summary>
  35. S200 = 6
  36. }
  37. }