YaskawaAlignerSimulator.cs 540 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Threading;
  3. using MECF.Framework.Simulator.Core.Driver;
  4. using MECF.Framework.Simulator.Core.Robots;
  5. namespace MECF.Framework.Simulator.Core.Aligners
  6. {
  7. public class YaskawaAlignerSimulator : YaskawaSR100ControllerSimulator
  8. {
  9. public YaskawaAlignerSimulator()
  10. :base(10111)
  11. {
  12. }
  13. }
  14. public class YaskawaNXAlignerSimulator : YaskawaNX100ControllerSimulator
  15. {
  16. public YaskawaNXAlignerSimulator()
  17. : base(10111)
  18. {
  19. }
  20. }
  21. }