| | |
| | | |
| | | import com.example.agvcontroller.action.ForceStopAction; |
| | | import com.example.agvcontroller.action.ForceSwitchAction; |
| | | import com.example.agvcontroller.action.ForwardBackAction; |
| | | import com.example.agvcontroller.action.HandInAction; |
| | | import com.example.agvcontroller.action.HandOutAction; |
| | | import com.example.agvcontroller.action.RotatopnLeftRight; |
| | | import com.example.agvcontroller.action.SingleSwitchAction; |
| | | import com.example.agvcontroller.action.SingleSwitchRunAction; |
| | | |
| | |
| | | SINGLE_SWITCH_RUN(0x8C , "强制单轴点动", SingleSwitchRunAction.class), |
| | | |
| | | FORCE_STOP(0xF0, "急停", ForceStopAction.class), |
| | | |
| | | FORWARD_BACK(0x81, "点动前进(后退)", ForwardBackAction.class), |
| | | |
| | | ROTATOPN_LEFT_RIGHT(0x82, "点动旋转(底盘)", RotatopnLeftRight.class), |
| | | |
| | | |
| | | ; |
| | | |
| | | public int cmdCode; |