| | |
| | | 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.CommandResponse; |
| | | import com.zy.asrs.wcs.rcs.model.enums.ShuttleProtocolStatusType; |
| | | import com.zy.asrs.wcs.rcs.model.protocol.ShuttleProtocol; |
| | | |
| | |
| | | |
| | | Device getDevice();//获取设备信息 |
| | | |
| | | boolean movePath(List<NavigateNode> nodes, Integer taskNo);//路径下发 |
| | | CommandResponse movePath(List<NavigateNode> nodes, Integer taskNo);//路径下发 |
| | | |
| | | boolean move(ShuttleCommand command);//移动 |
| | | CommandResponse move(ShuttleCommand command);//移动 |
| | | |
| | | boolean lift(ShuttleCommand command);//顶升 |
| | | CommandResponse lift(ShuttleCommand command);//顶升 |
| | | |
| | | boolean charge(ShuttleCommand command);//充电开关 |
| | | CommandResponse charge(ShuttleCommand command);//充电开关 |
| | | |
| | | boolean reset(ShuttleCommand command);//复位开关 |
| | | CommandResponse reset(ShuttleCommand command);//复位开关 |
| | | |
| | | CommandResponse updateLocation(ShuttleCommand command);//更新坐标 |
| | | |
| | | boolean isIdle(); |
| | | |
| | |
| | | |
| | | boolean setPakMk(boolean pakMk);//设置标记 |
| | | |
| | | boolean enableMoveLoc(ShuttleMoveLocParam param); |
| | | boolean enableMoveLoc(ShuttleMoveLocParam param, boolean enable); |
| | | |
| | | boolean requestWaiting(); |
| | | |
| | | //***************获取命令***************** |
| | | |
| | |
| | | |
| | | ShuttleCommand getChargeCommand(Integer taskNo, Boolean charge);//充电开关命令 true=>开 false=>关 |
| | | |
| | | ShuttleCommand getUpdateLocationCommand(Integer taskNo, String locNo);//获取更新坐标命令 |
| | | |
| | | } |