ZMCController.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO.Ports;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace StageController
  8. {
  9. public class ZMCController : AxisController
  10. {
  11. public override string Version { get => throw new NotImplementedException(); internal set => throw new NotImplementedException(); }
  12. public override bool IsOpen => throw new NotImplementedException();
  13. public override object LoadingStageModel { set => throw new NotImplementedException(); }
  14. public override double X => throw new NotImplementedException();
  15. public override double Y => throw new NotImplementedException();
  16. public override double Z => throw new NotImplementedException();
  17. public override int StateX => throw new NotImplementedException();
  18. public override int StateY => throw new NotImplementedException();
  19. public override int StateZ => throw new NotImplementedException();
  20. public override bool IsMoving => throw new NotImplementedException();
  21. public override void ClearPosZ()
  22. {
  23. throw new NotImplementedException();
  24. }
  25. public override void Close()
  26. {
  27. throw new NotImplementedException();
  28. }
  29. public override void FreeStage()
  30. {
  31. throw new NotImplementedException();
  32. }
  33. public override void FreeZ()
  34. {
  35. throw new NotImplementedException();
  36. }
  37. public override void GoTop(bool isToTop)
  38. {
  39. throw new NotImplementedException();
  40. }
  41. public override void LockStage()
  42. {
  43. throw new NotImplementedException();
  44. }
  45. public override void LockZ()
  46. {
  47. throw new NotImplementedException();
  48. }
  49. public override void Move(double x, double y)
  50. {
  51. throw new NotImplementedException();
  52. }
  53. public override string Open()
  54. {
  55. throw new NotImplementedException();
  56. }
  57. public override void Open(string portName, int baudRate, Parity parity, int dataBits, StopBits stopBits)
  58. {
  59. throw new NotImplementedException();
  60. }
  61. public override void RefreshPosition()
  62. {
  63. throw new NotImplementedException();
  64. }
  65. public override void ResetStage(Action actDone)
  66. {
  67. throw new NotImplementedException();
  68. }
  69. public override void SetMergeMode(bool isMerge)
  70. {
  71. throw new NotImplementedException();
  72. }
  73. public override void SetRockerEnabel(bool isAvailable)
  74. {
  75. throw new NotImplementedException();
  76. }
  77. public override void SetSpeedXY(int speed)
  78. {
  79. throw new NotImplementedException();
  80. }
  81. public override void SetSpeedZ(int speed)
  82. {
  83. throw new NotImplementedException();
  84. }
  85. public override void SetWorkspeedXY()
  86. {
  87. throw new NotImplementedException();
  88. }
  89. public override void Split(int direction)
  90. {
  91. throw new NotImplementedException();
  92. }
  93. public override void To(double x, double y)
  94. {
  95. throw new NotImplementedException();
  96. }
  97. public override void ToCenter()
  98. {
  99. throw new NotImplementedException();
  100. }
  101. public override void Up(double z)
  102. {
  103. throw new NotImplementedException();
  104. }
  105. public override void Up(int z)
  106. {
  107. throw new NotImplementedException();
  108. }
  109. public override void UpTo(double z)
  110. {
  111. throw new NotImplementedException();
  112. }
  113. public override void WaitMoveDone()
  114. {
  115. throw new NotImplementedException();
  116. }
  117. public override void ZScan(double start, double steplen, int times, Action shoot, Action package, Action actDone)
  118. {
  119. throw new NotImplementedException();
  120. }
  121. }
  122. }