| | |
| | | package com.zy.asrs.wcs.rcs.thread; |
| | | |
| | | import com.zy.asrs.wcs.common.ExecuteSupport; |
| | | import com.zy.asrs.wcs.core.model.NavigateNode; |
| | | import com.zy.asrs.wcs.core.model.command.ShuttleCommand; |
| | | import com.zy.asrs.wcs.core.model.enums.MotionCtgType; |
| | | import com.zy.asrs.wcs.rcs.entity.Device; |
| | | import com.zy.asrs.wcs.rcs.model.enums.ShuttleProtocolStatusType; |
| | | import com.zy.asrs.wcs.rcs.model.protocol.ShuttleProtocol; |
| | | |
| | | import java.util.List; |
| | |
| | | |
| | | boolean reset(ShuttleCommand command);//复位开关 |
| | | |
| | | boolean isIdle();//是否空闲 |
| | | boolean isIdle(); |
| | | |
| | | boolean isIdle(ExecuteSupport support);//是否空闲 |
| | | |
| | | boolean isDeviceIdle();//设备是否空闲 |
| | | |
| | | boolean isRequireCharge();//是否满足充电状态 |
| | | |
| | | boolean isCharging();//是否充电中 |
| | | |
| | | boolean isChargingCompleted();//是否充电完成 |
| | | |
| | | List<NavigateNode> getMoveAdvancePath();//获取穿梭车任务路径 |
| | | |
| | | int generateDeviceTaskNo(int taskNo, MotionCtgType motionCtgType);//生成硬件设备工作号 |
| | | |
| | | boolean setProtocolStatus(ShuttleProtocolStatusType status);//设置工作状态 |
| | | |
| | | boolean setSyncTaskNo(Integer taskNo);//设置工作号 |
| | | |
| | | boolean setPakMk(boolean pakMk);//设置标记 |
| | | |
| | | //***************获取命令***************** |
| | | |