Sic.Framework/MECF.Framework.RT.Equipment.../HardwareUnits/Robots/IAlignerHandlerFactory.cs

31 lines
639 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Aitex.Sorter.Common;
namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.Robot
{
public interface IAlignerHandlerFactory
{
IHandler Init();
IHandler Home();
IHandler Event();
IHandler Grip(Hand hand);
IHandler Release(Hand hand);
IHandler LiftUp();
IHandler LiftDown();
IHandler MoveToReadyPostion();
IHandler QueryState();
IHandler Clear();
IHandler Stop();
IHandler Align(double anlge);
}
}