S7PlcModel.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. using S7.Net;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using Prism.Mvvm;
  7. using System.Threading.Tasks;
  8. using S7NetModule.S7;
  9. namespace S7NetModule.Model
  10. {
  11. public class S7PlcModel:BindableBase
  12. {
  13. public S7Plc plcClient=null;
  14. // PLC的IP地址和端口号
  15. private string ipAddress= "192.168.1.100";
  16. public string IpAddress
  17. {
  18. get { return ipAddress; }
  19. set { SetProperty(ref ipAddress, value); }
  20. }
  21. private int port = 102; // 机架号,通常为0
  22. public int Port
  23. {
  24. get { return port; }
  25. set { SetProperty(ref port, value); }
  26. }
  27. private int rack = 0; // 机架号,通常为0
  28. public int Rack
  29. {
  30. get { return rack; }
  31. set { SetProperty(ref rack, value); }
  32. }
  33. private int slot= 1 ;// 槽号,根据你的PLC配置设置
  34. public int Slot
  35. {
  36. get { return slot; }
  37. set { SetProperty(ref slot, value); }
  38. }
  39. private CpuType cpuType= CpuType.S7200;// CPU类型,2代表S7-300/400系列CPU
  40. public CpuType CpuType
  41. {
  42. get { return cpuType; }
  43. set { SetProperty(ref cpuType, value); }
  44. }
  45. private int timeout = 5000; // 超时时间,单位毫秒
  46. public int Timeout
  47. {
  48. get { return timeout; }
  49. set { SetProperty(ref timeout, value); }
  50. }
  51. }
  52. }