| | |
| | | import com.example.agvcontroller.action.HandOutAction; |
| | | import com.example.agvcontroller.action.LiftResetAction; |
| | | import com.example.agvcontroller.action.LoadResetAction; |
| | | import com.example.agvcontroller.action.LoginReset; |
| | | import com.example.agvcontroller.action.RotatopnLeftRight; |
| | | import com.example.agvcontroller.action.SingleSwitchAction; |
| | | import com.example.agvcontroller.action.SingleSwitchRunAction; |
| | | |
| | | public enum HandleCmdType { |
| | | |
| | | HAND_OUT(0x00, "退出手动模式", HandOutAction.class), |
| | | HAND_OUT(0x02, "退出手动模式", HandOutAction.class), |
| | | |
| | | HAND_IN(0x01, "进入手动模式", HandInAction.class), |
| | | |
| | |
| | | |
| | | SINGLE_SWITCH(0x8C , "单轴使能", SingleSwitchAction.class), |
| | | |
| | | SINGLE_SWITCH_RUN(0x8C , "强制单轴点动", SingleSwitchRunAction.class), |
| | | SINGLE_SWITCH_RUN(0x8D , "强制单轴点动", SingleSwitchRunAction.class), |
| | | |
| | | FORCE_STOP(0xF0, "急停", ForceStopAction.class), |
| | | |
| | |
| | | |
| | | BACK_PADDLE(0x8A, "手动控制后拨杆", BackPaddle.class), |
| | | |
| | | LOGIN_RESET(0x80, "重新登录", LoginReset.class), |
| | | |
| | | |
| | | ; |
| | | |
| | |
| | | return null; |
| | | } |
| | | |
| | | public String getDesc() { |
| | | return desc; |
| | | } |
| | | |
| | | } |