├── .changelog ├── .clang-format ├── .gitignore ├── LICENSE ├── README-V3-EN.md ├── README-V3.md ├── README-V4-EN.md ├── README-V4.md ├── cr10_moveit ├── .setup_assistant ├── CMakeLists.txt ├── config │ ├── cartesian_limits.yaml │ ├── chomp_planning.yaml │ ├── cr10_robot.srdf │ ├── fake_controllers.yaml │ ├── joint_limits.yaml │ ├── kinematics.yaml │ ├── ompl_planning.yaml │ ├── ros_controllers.yaml │ └── sensors_3d.yaml ├── launch │ ├── chomp_planning_pipeline.launch.xml │ ├── cr10_moveit.launch │ ├── cr10_moveit_planning_execution.launch │ ├── cr10_robot_moveit_controller_manager.launch.xml │ ├── cr10_robot_moveit_sensor_manager.launch.xml │ ├── default_warehouse_db.launch │ ├── demo.launch │ ├── fake_moveit_controller_manager.launch.xml │ ├── joystick_control.launch │ ├── move_group.launch │ ├── moveit.rviz │ ├── moveit_rviz.launch │ ├── ompl_planning_pipeline.launch.xml │ ├── pilz_industrial_motion_planner_planning_pipeline.launch.xml │ ├── planning_context.launch │ ├── planning_pipeline.launch.xml │ ├── ros_controllers.launch │ ├── run_benchmark_ompl.launch │ ├── sensor_manager.launch.xml │ ├── setup_assistant.launch │ ├── trajectory_execution.launch.xml │ ├── warehouse.launch │ └── warehouse_settings.launch.xml └── package.xml ├── cr12_moveit ├── .setup_assistant ├── CMakeLists.txt ├── config │ ├── cartesian_limits.yaml │ ├── chomp_planning.yaml │ ├── cr12_robot.srdf │ ├── fake_controllers.yaml │ ├── gazebo_controllers.yaml │ ├── gazebo_cr12_robot.urdf │ ├── joint_limits.yaml │ ├── kinematics.yaml │ ├── ompl_planning.yaml │ ├── ros_controllers.yaml │ ├── sensors_3d.yaml │ ├── simple_moveit_controllers.yaml │ └── stomp_planning.yaml ├── launch │ ├── chomp_planning_pipeline.launch.xml │ ├── cr12_moveit.launch │ ├── cr12_moveit_planning_execution.launch │ ├── cr12_robot_moveit_controller_manager.launch.xml │ ├── cr12_robot_moveit_sensor_manager.launch.xml │ ├── default_warehouse_db.launch │ ├── demo.launch │ ├── fake_moveit_controller_manager.launch.xml │ ├── joystick_control.launch │ ├── move_group.launch │ ├── moveit.rviz │ ├── moveit_rviz.launch │ ├── ompl_planning_pipeline.launch.xml │ ├── pilz_industrial_motion_planner_planning_pipeline.launch.xml │ ├── planning_context.launch │ ├── planning_pipeline.launch.xml │ ├── ros_controllers.launch │ ├── run_benchmark_ompl.launch │ ├── sensor_manager.launch.xml │ ├── setup_assistant.launch │ ├── trajectory_execution.launch.xml │ ├── warehouse.launch │ └── warehouse_settings.launch.xml └── package.xml ├── cr16_moveit ├── .setup_assistant ├── CMakeLists.txt ├── config │ ├── cartesian_limits.yaml │ ├── chomp_planning.yaml │ ├── cr16_robot.srdf │ ├── fake_controllers.yaml │ ├── joint_limits.yaml │ ├── kinematics.yaml │ ├── ompl_planning.yaml │ ├── ros_controllers.yaml │ └── sensors_3d.yaml ├── launch │ ├── chomp_planning_pipeline.launch.xml │ ├── cr16_moveit.launch │ ├── cr16_moveit_planning_execution.launch │ ├── cr16_robot_moveit_controller_manager.launch.xml │ ├── cr16_robot_moveit_sensor_manager.launch.xml │ ├── default_warehouse_db.launch │ ├── demo.launch │ ├── fake_moveit_controller_manager.launch.xml │ ├── joystick_control.launch │ ├── move_group.launch │ ├── moveit.rviz │ ├── moveit_rviz.launch │ ├── ompl_planning_pipeline.launch.xml │ ├── pilz_industrial_motion_planner_planning_pipeline.launch.xml │ ├── planning_context.launch │ ├── planning_pipeline.launch.xml │ ├── ros_controllers.launch │ ├── run_benchmark_ompl.launch │ ├── sensor_manager.launch.xml │ ├── setup_assistant.launch │ ├── trajectory_execution.launch.xml │ ├── warehouse.launch │ └── warehouse_settings.launch.xml └── package.xml ├── cr3_moveit ├── .setup_assistant ├── CMakeLists.txt ├── config │ ├── cartesian_limits.yaml │ ├── chomp_planning.yaml │ ├── cr3_robot.srdf │ ├── fake_controllers.yaml │ ├── joint_limits.yaml │ ├── kinematics.yaml │ ├── ompl_planning.yaml │ ├── ros_controllers.yaml │ └── sensors_3d.yaml ├── launch │ ├── chomp_planning_pipeline.launch.xml │ ├── cr3_moveit.launch │ ├── cr3_moveit_planning_execution.launch │ ├── cr3_robot_moveit_controller_manager.launch.xml │ ├── cr3_robot_moveit_sensor_manager.launch.xml │ ├── default_warehouse_db.launch │ ├── demo.launch │ ├── fake_moveit_controller_manager.launch.xml │ ├── joystick_control.launch │ ├── move_group.launch │ ├── moveit.rviz │ ├── moveit_rviz.launch │ ├── ompl_planning_pipeline.launch.xml │ ├── pilz_industrial_motion_planner_planning_pipeline.launch.xml │ ├── planning_context.launch │ ├── planning_pipeline.launch.xml │ ├── ros_controllers.launch │ ├── run_benchmark_ompl.launch │ ├── sensor_manager.launch.xml │ ├── setup_assistant.launch │ ├── trajectory_execution.launch.xml │ ├── warehouse.launch │ └── warehouse_settings.launch.xml └── package.xml ├── cr5_moveit ├── .setup_assistant ├── CMakeLists.txt ├── config │ ├── cartesian_limits.yaml │ ├── chomp_planning.yaml │ ├── cr5_robot.srdf │ ├── fake_controllers.yaml │ ├── joint_limits.yaml │ ├── kinematics.yaml │ ├── ompl_planning.yaml │ ├── ros_controllers.yaml │ └── sensors_3d.yaml ├── launch │ ├── chomp_planning_pipeline.launch.xml │ ├── cr5_moveit.launch │ ├── cr5_moveit_planning_execution.launch │ ├── cr5_robot_moveit_controller_manager.launch.xml │ ├── cr5_robot_moveit_sensor_manager.launch.xml │ ├── default_warehouse_db.launch │ ├── demo.launch │ ├── fake_moveit_controller_manager.launch.xml │ ├── joystick_control.launch │ ├── move_group.launch │ ├── moveit.rviz │ ├── moveit_rviz.launch │ ├── ompl_planning_pipeline.launch.xml │ ├── planning_context.launch │ ├── planning_pipeline.launch.xml │ ├── ros_controllers.launch │ ├── run_benchmark_ompl.launch │ ├── sensor_manager.launch.xml │ ├── setup_assistant.launch │ ├── trajectory_execution.launch.xml │ ├── warehouse.launch │ └── warehouse_settings.launch.xml └── package.xml ├── cr5control └── src │ ├── main.cpp │ ├── main_menu.cpp │ ├── main_menu.h │ └── main_menu.ui ├── cr5robot ├── CMakeLists.txt └── package.xml ├── cr7_moveit ├── .setup_assistant ├── CMakeLists.txt ├── config │ ├── cartesian_limits.yaml │ ├── chomp_planning.yaml │ ├── cr7_robot.srdf │ ├── fake_controllers.yaml │ ├── gazebo_controllers.yaml │ ├── gazebo_cr7_robot.urdf │ ├── joint_limits.yaml │ ├── kinematics.yaml │ ├── ompl_planning.yaml │ ├── ros_controllers.yaml │ ├── sensors_3d.yaml │ ├── simple_moveit_controllers.yaml │ └── stomp_planning.yaml ├── launch │ ├── chomp_planning_pipeline.launch.xml │ ├── cr7_moveit.launch │ ├── cr7_moveit_planning_execution.launch │ ├── cr7_robot_moveit_controller_manager.launch.xml │ ├── cr7_robot_moveit_sensor_manager.launch.xml │ ├── default_warehouse_db.launch │ ├── demo.launch │ ├── fake_moveit_controller_manager.launch.xml │ ├── joystick_control.launch │ ├── move_group.launch │ ├── moveit.rviz │ ├── moveit_rviz.launch │ ├── ompl_planning_pipeline.launch.xml │ ├── pilz_industrial_motion_planner_planning_pipeline.launch.xml │ ├── planning_context.launch │ ├── planning_pipeline.launch.xml │ ├── ros_controllers.launch │ ├── run_benchmark_ompl.launch │ ├── sensor_manager.launch.xml │ ├── setup_assistant.launch │ ├── trajectory_execution.launch.xml │ ├── warehouse.launch │ └── warehouse_settings.launch.xml ├── launch_ │ ├── chomp_planning_pipeline.launch.xml │ ├── cr7_moveit.launch │ ├── cr7_robot_moveit_sensor_manager.launch.xml │ ├── default_warehouse_db.launch │ ├── demo.launch │ ├── demo_gazebo.launch │ ├── fake_moveit_controller_manager.launch.xml │ ├── gazebo.launch │ ├── joystick_control.launch │ ├── move_group.launch │ ├── moveit.rviz │ ├── moveit_rviz.launch │ ├── ompl-chomp_planning_pipeline.launch.xml │ ├── ompl_planning_pipeline.launch.xml │ ├── pilz_industrial_motion_planner_planning_pipeline.launch.xml │ ├── planning_context.launch │ ├── planning_pipeline.launch.xml │ ├── ros_control_moveit_controller_manager.launch.xml │ ├── ros_controllers.launch │ ├── run_benchmark_ompl.launch │ ├── sensor_manager.launch.xml │ ├── setup_assistant.launch │ ├── simple_moveit_controller_manager.launch.xml │ ├── stomp_planning_pipeline.launch.xml │ ├── trajectory_execution.launch.xml │ ├── warehouse.launch │ └── warehouse_settings.launch.xml └── package.xml ├── dobot_bringup ├── CMakeLists.txt ├── include │ ├── dobot_bringup │ │ ├── commander.h │ │ ├── cr5_robot.h │ │ └── tcp_socket.h │ └── nlohmann │ │ ├── adl_serializer.hpp │ │ ├── byte_container_with_subtype.hpp │ │ ├── detail │ │ ├── abi_macros.hpp │ │ ├── conversions │ │ │ ├── from_json.hpp │ │ │ ├── to_chars.hpp │ │ │ └── to_json.hpp │ │ ├── exceptions.hpp │ │ ├── hash.hpp │ │ ├── input │ │ │ ├── binary_reader.hpp │ │ │ ├── input_adapters.hpp │ │ │ ├── json_sax.hpp │ │ │ ├── lexer.hpp │ │ │ ├── parser.hpp │ │ │ └── position_t.hpp │ │ ├── iterators │ │ │ ├── internal_iterator.hpp │ │ │ ├── iter_impl.hpp │ │ │ ├── iteration_proxy.hpp │ │ │ ├── iterator_traits.hpp │ │ │ ├── json_reverse_iterator.hpp │ │ │ └── primitive_iterator.hpp │ │ ├── json_custom_base_class.hpp │ │ ├── json_pointer.hpp │ │ ├── json_ref.hpp │ │ ├── macro_scope.hpp │ │ ├── macro_unscope.hpp │ │ ├── meta │ │ │ ├── call_std │ │ │ │ ├── begin.hpp │ │ │ │ └── end.hpp │ │ │ ├── cpp_future.hpp │ │ │ ├── detected.hpp │ │ │ ├── identity_tag.hpp │ │ │ ├── is_sax.hpp │ │ │ ├── std_fs.hpp │ │ │ ├── type_traits.hpp │ │ │ └── void_t.hpp │ │ ├── output │ │ │ ├── binary_writer.hpp │ │ │ ├── output_adapters.hpp │ │ │ └── serializer.hpp │ │ ├── string_concat.hpp │ │ ├── string_escape.hpp │ │ └── value_t.hpp │ │ ├── json.hpp │ │ ├── json_fwd.hpp │ │ ├── ordered_map.hpp │ │ └── thirdparty │ │ └── hedley │ │ ├── hedley.hpp │ │ └── hedley_undef.hpp ├── launch │ └── bringup.launch ├── msg │ ├── RobotStatus.msg │ └── ToolVectorActual.msg ├── package.xml ├── src │ ├── RosExample.cpp │ ├── cr5_robot.cpp │ ├── demo.cpp │ ├── main.cpp │ └── tcp_socket.cpp └── srv │ ├── AI.srv │ ├── AO.srv │ ├── AOExecute.srv │ ├── AccJ.srv │ ├── AccL.srv │ ├── Arc.srv │ ├── Arch.srv │ ├── BrakeControl.srv │ ├── CP.srv │ ├── Circle.srv │ ├── ClearError.srv │ ├── ContinueScript.srv │ ├── Continues.srv │ ├── DI.srv │ ├── DIGroup.srv │ ├── DO.srv │ ├── DOExecute.srv │ ├── DOGroup.srv │ ├── DigitalOutputs.srv │ ├── DisableRobot.srv │ ├── EmergencyStop.srv │ ├── EnableRobot.srv │ ├── GetAngle.srv │ ├── GetCoils.srv │ ├── GetErrorID.srv │ ├── GetHoldRegs.srv │ ├── GetInBits.srv │ ├── GetInRegs.srv │ ├── GetPathStartPose.srv │ ├── GetPose.srv │ ├── GetSixForceData.srv │ ├── GetTerminal485.srv │ ├── GetTraceStartPose.srv │ ├── HandleTrajPoints.srv │ ├── InverseSolution.srv │ ├── JointMovJ.srv │ ├── Jump.srv │ ├── LimZ.srv │ ├── LoadSwitch.srv │ ├── ModbusClose.srv │ ├── ModbusCreate.srv │ ├── MovJ.srv │ ├── MovJExt.srv │ ├── MovJIO.srv │ ├── MovL.srv │ ├── MovLIO.srv │ ├── MoveJog.srv │ ├── PauseScript.srv │ ├── PayLoad.srv │ ├── PositiveSolution.srv │ ├── PowerOn.srv │ ├── RelJointMovJ.srv │ ├── RelMovJ.srv │ ├── RelMovJTool.srv │ ├── RelMovJUser.srv │ ├── RelMovL.srv │ ├── RelMovLTool.srv │ ├── RelMovLUser.srv │ ├── ResetRobot.srv │ ├── RobotMode.srv │ ├── RunScript.srv │ ├── ServoJ.srv │ ├── ServoJParam.srv │ ├── ServoP.srv │ ├── SetArmOrientation.srv │ ├── SetCoils.srv │ ├── SetCollideDrag.srv │ ├── SetCollisionLevel.srv │ ├── SetHoldRegs.srv │ ├── SetObstacleAvoid.srv │ ├── SetPayload.srv │ ├── SetSafeSkin.srv │ ├── SetTerminal485.srv │ ├── SetTerminalKeys.srv │ ├── SpeedFactor.srv │ ├── SpeedJ.srv │ ├── SpeedL.srv │ ├── StartDrag.srv │ ├── StartFCTrace.srv │ ├── StartPath.srv │ ├── StartTrace.srv │ ├── StopDrag.srv │ ├── StopScript.srv │ ├── StopmoveJog.srv │ ├── Sync.srv │ ├── SyncAll.srv │ ├── TCPSpeed.srv │ ├── TCPSpeedEnd.srv │ ├── TcpDashboard.srv │ ├── TcpRealData.srv │ ├── Tool.srv │ ├── ToolAI.srv │ ├── ToolDI.srv │ ├── ToolDO.srv │ ├── ToolDOExecute.srv │ ├── User.srv │ ├── Wait.srv │ └── pause.srv ├── dobot_description ├── CMakeLists.txt ├── config │ ├── joint_names_CR12URDF.yaml │ ├── joint_names_CR5URDF.yaml │ └── joint_names_CR7URDF.yaml ├── launch │ └── display.launch ├── meshes │ ├── cr10 │ │ ├── Link1.STL │ │ ├── Link2.STL │ │ ├── Link3.STL │ │ ├── Link4.STL │ │ ├── Link5.STL │ │ ├── Link6.STL │ │ └── base_link.STL │ ├── cr12 │ │ ├── J1.STL │ │ ├── J2.STL │ │ ├── J3.STL │ │ ├── J4.STL │ │ ├── J5.STL │ │ ├── J6.STL │ │ └── base_link0.STL │ ├── cr16 │ │ ├── Link1.STL │ │ ├── Link2.STL │ │ ├── Link3.STL │ │ ├── Link4.STL │ │ ├── Link5.STL │ │ ├── Link6.STL │ │ └── base_link.STL │ ├── cr3 │ │ ├── Link1.STL │ │ ├── Link2.STL │ │ ├── Link3.STL │ │ ├── Link4.STL │ │ ├── Link5.STL │ │ ├── Link6.STL │ │ └── base_link.STL │ ├── cr5 │ │ ├── Link1.dae │ │ ├── Link2.dae │ │ ├── Link3.dae │ │ ├── Link4.dae │ │ ├── Link5.dae │ │ ├── Link6.dae │ │ └── base_link.dae │ ├── cr7 │ │ ├── J1.STL │ │ ├── J2.STL │ │ ├── J3.STL │ │ ├── J4.STL │ │ ├── J5.STL │ │ ├── J6.STL │ │ └── base_link0.STL │ ├── me6 │ │ ├── Link1.STL │ │ ├── Link2.STL │ │ ├── Link3.STL │ │ ├── Link4.STL │ │ ├── Link5.STL │ │ ├── Link6.STL │ │ └── base_link.STL │ ├── nova2 │ │ ├── Link1.STL │ │ ├── Link2.STL │ │ ├── Link3.STL │ │ ├── Link4.STL │ │ ├── Link5.STL │ │ ├── Link6.STL │ │ └── base_link.STL │ └── nova5 │ │ ├── Link1.STL │ │ ├── Link2.STL │ │ ├── Link3.STL │ │ ├── Link4.STL │ │ ├── Link5.STL │ │ ├── Link6.STL │ │ └── base_link.STL ├── package.xml ├── rviz │ └── urdf.rviz └── urdf │ ├── cr10_robot.urdf │ ├── cr12_robot.urdf │ ├── cr16_robot.urdf │ ├── cr3_robot.urdf │ ├── cr5_robot.urdf │ ├── cr7_robot.urdf │ ├── me6_robot.urdf │ ├── nova2_robot.urdf │ └── nova5_robot.urdf ├── dobot_gazebo ├── CMakeLists.txt ├── config │ ├── cr10_moveit_controllers.yaml │ ├── cr12_moveit_controllers.yaml │ ├── cr16_moveit_controllers.yaml │ ├── cr3_moveit_controllers.yaml │ ├── cr5_moveit_controllers.yaml │ ├── cr7_moveit_controllers.yaml │ ├── me6_moveit_controllers.yaml │ ├── nova2_moveit_controllers.yaml │ └── nova5_moveit_controllers.yaml ├── launch │ ├── cr10_robot_description.xml │ ├── cr12_robot_description.xml │ ├── cr16_robot_description.xml │ ├── cr3_robot_description.xml │ ├── cr5_robot_description.xml │ ├── cr7_robot_description.xml │ ├── gazebo.launch │ ├── me6_robot_description.xml │ ├── nova2_robot_description.xml │ ├── nova5_robot_description.xml │ └── robot_control.xml ├── package.xml └── urdf │ ├── cr10_robot.xacro │ ├── cr12_robot.xacro │ ├── cr16_robot.xacro │ ├── cr3_robot.xacro │ ├── cr5_robot.xacro │ ├── cr7_robot.xacro │ ├── me6_robot.xacro │ ├── nova2_robot.xacro │ └── nova5_robot.xacro ├── dobot_moveit ├── CMakeLists.txt ├── launch │ ├── demo.launch │ └── moveit.launch └── package.xml ├── dobot_v4_bringup ├── CMakeLists.txt ├── include │ ├── dobot_v4_bringup │ │ ├── commander.h │ │ ├── cr5_v4_robot.h │ │ ├── parseTool.h │ │ └── tcp_socket.h │ └── nlohmann │ │ ├── adl_serializer.hpp │ │ ├── byte_container_with_subtype.hpp │ │ ├── detail │ │ ├── abi_macros.hpp │ │ ├── conversions │ │ │ ├── from_json.hpp │ │ │ ├── to_chars.hpp │ │ │ └── to_json.hpp │ │ ├── exceptions.hpp │ │ ├── hash.hpp │ │ ├── input │ │ │ ├── binary_reader.hpp │ │ │ ├── input_adapters.hpp │ │ │ ├── json_sax.hpp │ │ │ ├── lexer.hpp │ │ │ ├── parser.hpp │ │ │ └── position_t.hpp │ │ ├── iterators │ │ │ ├── internal_iterator.hpp │ │ │ ├── iter_impl.hpp │ │ │ ├── iteration_proxy.hpp │ │ │ ├── iterator_traits.hpp │ │ │ ├── json_reverse_iterator.hpp │ │ │ └── primitive_iterator.hpp │ │ ├── json_custom_base_class.hpp │ │ ├── json_pointer.hpp │ │ ├── json_ref.hpp │ │ ├── macro_scope.hpp │ │ ├── macro_unscope.hpp │ │ ├── meta │ │ │ ├── call_std │ │ │ │ ├── begin.hpp │ │ │ │ └── end.hpp │ │ │ ├── cpp_future.hpp │ │ │ ├── detected.hpp │ │ │ ├── identity_tag.hpp │ │ │ ├── is_sax.hpp │ │ │ ├── std_fs.hpp │ │ │ ├── type_traits.hpp │ │ │ └── void_t.hpp │ │ ├── output │ │ │ ├── binary_writer.hpp │ │ │ ├── output_adapters.hpp │ │ │ └── serializer.hpp │ │ ├── string_concat.hpp │ │ ├── string_escape.hpp │ │ └── value_t.hpp │ │ ├── json.hpp │ │ ├── json_fwd.hpp │ │ ├── ordered_map.hpp │ │ └── thirdparty │ │ └── hedley │ │ ├── hedley.hpp │ │ └── hedley_undef.hpp ├── launch │ └── bringup_v4.launch ├── msg │ ├── RobotStatus.msg │ └── ToolVectorActual.msg ├── package.xml ├── src │ ├── cr5_v4_robot.cpp │ ├── main.cpp │ ├── parseTool.cpp │ └── tcp_socket.cpp └── srv │ ├── AI.srv │ ├── AO.srv │ ├── AOInstant.srv │ ├── AccJ.srv │ ├── AccL.srv │ ├── Arc.srv │ ├── BrakeControl.srv │ ├── CP.srv │ ├── CalcTool.srv │ ├── CalcUser.srv │ ├── Circle.srv │ ├── ClearError.srv │ ├── Continue.srv │ ├── DI.srv │ ├── DIGroup.srv │ ├── DO.srv │ ├── DOGroup.srv │ ├── DOInstant.srv │ ├── DisableRobot.srv │ ├── DragSensivity.srv │ ├── EmergencyStop.srv │ ├── EnableRobot.srv │ ├── EnableSafeSkin.srv │ ├── GetAO.srv │ ├── GetAngle.srv │ ├── GetCoils.srv │ ├── GetCurrentCommandId.srv │ ├── GetDO.srv │ ├── GetDOGroup.srv │ ├── GetErrorID.srv │ ├── GetHoldRegs.srv │ ├── GetInBits.srv │ ├── GetInRegs.srv │ ├── GetInputBool.srv │ ├── GetInputFloat.srv │ ├── GetInputInt.srv │ ├── GetOutputBool.srv │ ├── GetOutputFloat.srv │ ├── GetOutputInt.srv │ ├── GetPose.srv │ ├── GetStartPose.srv │ ├── InverseKin.srv │ ├── InverseSolution.srv │ ├── ModbusClose.srv │ ├── ModbusCreate.srv │ ├── ModbusRTUCreate.srv │ ├── MovJ.srv │ ├── MovJIO.srv │ ├── MovL.srv │ ├── MovLIO.srv │ ├── MoveJog.srv │ ├── Pause.srv │ ├── PositiveKin.srv │ ├── PowerOn.srv │ ├── RelJointMovJ.srv │ ├── RelMovJTool.srv │ ├── RelMovJUser.srv │ ├── RelMovLTool.srv │ ├── RelMovLUser.srv │ ├── RobotMode.srv │ ├── RunScript.srv │ ├── ServoJ.srv │ ├── ServoP.srv │ ├── SetBackDistance.srv │ ├── SetCoils.srv │ ├── SetCollisionLevel.srv │ ├── SetHoldRegs.srv │ ├── SetOutputBool.srv │ ├── SetOutputFloat.srv │ ├── SetOutputInt.srv │ ├── SetPayload.srv │ ├── SetPostCollisionMode.srv │ ├── SetSafeSkin.srv │ ├── SetSafeWallEnable.srv │ ├── SetTool.srv │ ├── SetTool485.srv │ ├── SetToolMode.srv │ ├── SetToolPower.srv │ ├── SetUser.srv │ ├── SpeedFactor.srv │ ├── StartDrag.srv │ ├── StartPath.srv │ ├── Stop.srv │ ├── StopDrag.srv │ ├── StopMoveJog.srv │ ├── TcpDashboard.srv │ ├── Tool.srv │ ├── ToolAI.srv │ ├── ToolDI.srv │ ├── ToolDO.srv │ ├── ToolDOInstant.srv │ ├── User.srv │ ├── VelJ.srv │ └── VelL.srv ├── image ├── .png ├── bringup.png ├── checkTcpMode.png ├── checkTcpMode_en.png ├── cr5control.jpg ├── demov3.png ├── excetion.png ├── excetion_en.png ├── feed.png ├── feed_en.png ├── joint_controller.png ├── main.png ├── main_en.png ├── move.png ├── move_en.png ├── moveit.gif ├── netConnect.png ├── netConnect_en.png ├── robot.ico ├── robotType.png ├── runpy.png ├── rviz.jpg ├── updateIP.png └── updateIP_en.png ├── me6_moveit ├── .setup_assistant ├── CMakeLists.txt ├── config │ ├── cartesian_limits.yaml │ ├── chomp_planning.yaml │ ├── fake_controllers.yaml │ ├── joint_limits.yaml │ ├── kinematics.yaml │ ├── me6_robot.srdf │ ├── ompl_planning.yaml │ ├── ros_controllers.yaml │ └── sensors_3d.yaml ├── launch │ ├── chomp_planning_pipeline.launch.xml │ ├── default_warehouse_db.launch │ ├── demo.launch │ ├── demo_gazebo.launch │ ├── fake_moveit_controller_manager.launch.xml │ ├── gazebo.launch │ ├── joystick_control.launch │ ├── me6_moveit.launch │ ├── me6_moveit_planning_execution.launch │ ├── me6_robot_moveit_controller_manager.launch.xml │ ├── me6_robot_moveit_sensor_manager.launch.xml │ ├── move_group.launch │ ├── moveit.rviz │ ├── moveit_rviz.launch │ ├── ompl_planning_pipeline.launch.xml │ ├── pilz_industrial_motion_planner_planning_pipeline.launch.xml │ ├── planning_context.launch │ ├── planning_pipeline.launch.xml │ ├── ros_controllers.launch │ ├── run_benchmark_ompl.launch │ ├── sensor_manager.launch.xml │ ├── setup_assistant.launch │ ├── trajectory_execution.launch.xml │ ├── warehouse.launch │ └── warehouse_settings.launch.xml └── package.xml ├── nova2_moveit ├── .setup_assistant ├── CMakeLists.txt ├── config │ ├── cartesian_limits.yaml │ ├── chomp_planning.yaml │ ├── fake_controllers.yaml │ ├── joint_limits.yaml │ ├── kinematics.yaml │ ├── nova2_robot.srdf │ ├── ompl_planning.yaml │ ├── ros_controllers.yaml │ └── sensors_3d.yaml ├── launch │ ├── chomp_planning_pipeline.launch.xml │ ├── default_warehouse_db.launch │ ├── demo.launch │ ├── fake_moveit_controller_manager.launch.xml │ ├── joystick_control.launch │ ├── move_group.launch │ ├── moveit.rviz │ ├── moveit_rviz.launch │ ├── nova2_moveit.launch │ ├── nova2_moveit_planning_execution.launch │ ├── nova2_robot_moveit_controller_manager.launch.xml │ ├── nova2_robot_moveit_sensor_manager.launch.xml │ ├── ompl_planning_pipeline.launch.xml │ ├── pilz_industrial_motion_planner_planning_pipeline.launch.xml │ ├── planning_context.launch │ ├── planning_pipeline.launch.xml │ ├── ros_controllers.launch │ ├── run_benchmark_ompl.launch │ ├── sensor_manager.launch.xml │ ├── setup_assistant.launch │ ├── trajectory_execution.launch.xml │ ├── warehouse.launch │ └── warehouse_settings.launch.xml └── package.xml ├── nova5_moveit ├── .setup_assistant ├── CMakeLists.txt ├── config │ ├── cartesian_limits.yaml │ ├── chomp_planning.yaml │ ├── fake_controllers.yaml │ ├── joint_limits.yaml │ ├── kinematics.yaml │ ├── nova5_robot.srdf │ ├── ompl_planning.yaml │ ├── ros_controllers.yaml │ └── sensors_3d.yaml ├── launch │ ├── chomp_planning_pipeline.launch.xml │ ├── default_warehouse_db.launch │ ├── demo.launch │ ├── fake_moveit_controller_manager.launch.xml │ ├── joystick_control.launch │ ├── move_group.launch │ ├── moveit.rviz │ ├── moveit_rviz.launch │ ├── nova5_moveit.launch │ ├── nova5_moveit_planning_execution.launch │ ├── nova5_robot_moveit_controller_manager.launch.xml │ ├── nova5_robot_moveit_sensor_manager.launch.xml │ ├── ompl_planning_pipeline.launch.xml │ ├── pilz_industrial_motion_planner_planning_pipeline.launch.xml │ ├── planning_context.launch │ ├── planning_pipeline.launch.xml │ ├── ros_controllers.launch │ ├── run_benchmark_ompl.launch │ ├── sensor_manager.launch.xml │ ├── setup_assistant.launch │ ├── trajectory_execution.launch.xml │ ├── warehouse.launch │ └── warehouse_settings.launch.xml └── package.xml ├── rosdemo_v3 ├── CMakeLists.txt ├── alarmFile │ ├── alarm_controller.json │ └── alarm_servo.json ├── include │ ├── nlohmann │ │ ├── adl_serializer.hpp │ │ ├── byte_container_with_subtype.hpp │ │ ├── detail │ │ │ ├── abi_macros.hpp │ │ │ ├── conversions │ │ │ │ ├── from_json.hpp │ │ │ │ ├── to_chars.hpp │ │ │ │ └── to_json.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── hash.hpp │ │ │ ├── input │ │ │ │ ├── binary_reader.hpp │ │ │ │ ├── input_adapters.hpp │ │ │ │ ├── json_sax.hpp │ │ │ │ ├── lexer.hpp │ │ │ │ ├── parser.hpp │ │ │ │ └── position_t.hpp │ │ │ ├── iterators │ │ │ │ ├── internal_iterator.hpp │ │ │ │ ├── iter_impl.hpp │ │ │ │ ├── iteration_proxy.hpp │ │ │ │ ├── iterator_traits.hpp │ │ │ │ ├── json_reverse_iterator.hpp │ │ │ │ └── primitive_iterator.hpp │ │ │ ├── json_custom_base_class.hpp │ │ │ ├── json_pointer.hpp │ │ │ ├── json_ref.hpp │ │ │ ├── macro_scope.hpp │ │ │ ├── macro_unscope.hpp │ │ │ ├── meta │ │ │ │ ├── call_std │ │ │ │ │ ├── begin.hpp │ │ │ │ │ └── end.hpp │ │ │ │ ├── cpp_future.hpp │ │ │ │ ├── detected.hpp │ │ │ │ ├── identity_tag.hpp │ │ │ │ ├── is_sax.hpp │ │ │ │ ├── std_fs.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ └── void_t.hpp │ │ │ ├── output │ │ │ │ ├── binary_writer.hpp │ │ │ │ ├── output_adapters.hpp │ │ │ │ └── serializer.hpp │ │ │ ├── string_concat.hpp │ │ │ ├── string_escape.hpp │ │ │ └── value_t.hpp │ │ ├── json.hpp │ │ ├── json_fwd.hpp │ │ ├── ordered_map.hpp │ │ └── thirdparty │ │ │ └── hedley │ │ │ ├── hedley.hpp │ │ │ └── hedley_undef.hpp │ └── rosDemoCRV3.h ├── launch │ └── democr_v3.launch ├── package.xml ├── src │ ├── main.cpp │ └── rosDemoCRV3.cpp └── srv │ ├── AI.srv │ ├── AO.srv │ ├── AOExecute.srv │ ├── AccJ.srv │ ├── AccL.srv │ ├── Arc.srv │ ├── Arch.srv │ ├── BrakeControl.srv │ ├── CP.srv │ ├── Circle.srv │ ├── ClearError.srv │ ├── ContinueScript.srv │ ├── Continues.srv │ ├── DI.srv │ ├── DIGroup.srv │ ├── DO.srv │ ├── DOExecute.srv │ ├── DOGroup.srv │ ├── DigitalOutputs.srv │ ├── DisableRobot.srv │ ├── EmergencyStop.srv │ ├── EnableRobot.srv │ ├── GetAngle.srv │ ├── GetCoils.srv │ ├── GetErrorID.srv │ ├── GetHoldRegs.srv │ ├── GetInBits.srv │ ├── GetInRegs.srv │ ├── GetPathStartPose.srv │ ├── GetPose.srv │ ├── GetSixForceData.srv │ ├── GetTerminal485.srv │ ├── GetTraceStartPose.srv │ ├── HandleTrajPoints.srv │ ├── InverseSolution.srv │ ├── JointMovJ.srv │ ├── Jump.srv │ ├── LimZ.srv │ ├── LoadSwitch.srv │ ├── ModbusClose.srv │ ├── ModbusCreate.srv │ ├── MovJ.srv │ ├── MovJExt.srv │ ├── MovJIO.srv │ ├── MovL.srv │ ├── MovLIO.srv │ ├── MoveJog.srv │ ├── PauseScript.srv │ ├── PayLoad.srv │ ├── PositiveSolution.srv │ ├── PowerOn.srv │ ├── RelJointMovJ.srv │ ├── RelMovJ.srv │ ├── RelMovJTool.srv │ ├── RelMovJUser.srv │ ├── RelMovL.srv │ ├── RelMovLTool.srv │ ├── RelMovLUser.srv │ ├── ResetRobot.srv │ ├── RobotMode.srv │ ├── RunScript.srv │ ├── ServoJ.srv │ ├── ServoP.srv │ ├── SetArmOrientation.srv │ ├── SetCoils.srv │ ├── SetCollideDrag.srv │ ├── SetCollisionLevel.srv │ ├── SetHoldRegs.srv │ ├── SetObstacleAvoid.srv │ ├── SetPayload.srv │ ├── SetSafeSkin.srv │ ├── SetTerminal485.srv │ ├── SetTerminalKeys.srv │ ├── SpeedFactor.srv │ ├── SpeedJ.srv │ ├── SpeedL.srv │ ├── StartDrag.srv │ ├── StartFCTrace.srv │ ├── StartPath.srv │ ├── StartTrace.srv │ ├── StopDrag.srv │ ├── StopScript.srv │ ├── StopmoveJog.srv │ ├── Sync.srv │ ├── SyncAll.srv │ ├── TCPSpeed.srv │ ├── TCPSpeedEnd.srv │ ├── Tool.srv │ ├── ToolAI.srv │ ├── ToolDI.srv │ ├── ToolDO.srv │ ├── ToolDOExecute.srv │ ├── User.srv │ ├── Wait.srv │ └── pause.srv ├── rosdemo_v4 ├── CMakeLists.txt ├── alarmFile │ ├── alarm_controller.json │ └── alarm_servo.json ├── include │ ├── nlohmann │ │ ├── adl_serializer.hpp │ │ ├── byte_container_with_subtype.hpp │ │ ├── detail │ │ │ ├── abi_macros.hpp │ │ │ ├── conversions │ │ │ │ ├── from_json.hpp │ │ │ │ ├── to_chars.hpp │ │ │ │ └── to_json.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── hash.hpp │ │ │ ├── input │ │ │ │ ├── binary_reader.hpp │ │ │ │ ├── input_adapters.hpp │ │ │ │ ├── json_sax.hpp │ │ │ │ ├── lexer.hpp │ │ │ │ ├── parser.hpp │ │ │ │ └── position_t.hpp │ │ │ ├── iterators │ │ │ │ ├── internal_iterator.hpp │ │ │ │ ├── iter_impl.hpp │ │ │ │ ├── iteration_proxy.hpp │ │ │ │ ├── iterator_traits.hpp │ │ │ │ ├── json_reverse_iterator.hpp │ │ │ │ └── primitive_iterator.hpp │ │ │ ├── json_custom_base_class.hpp │ │ │ ├── json_pointer.hpp │ │ │ ├── json_ref.hpp │ │ │ ├── macro_scope.hpp │ │ │ ├── macro_unscope.hpp │ │ │ ├── meta │ │ │ │ ├── call_std │ │ │ │ │ ├── begin.hpp │ │ │ │ │ └── end.hpp │ │ │ │ ├── cpp_future.hpp │ │ │ │ ├── detected.hpp │ │ │ │ ├── identity_tag.hpp │ │ │ │ ├── is_sax.hpp │ │ │ │ ├── std_fs.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ └── void_t.hpp │ │ │ ├── output │ │ │ │ ├── binary_writer.hpp │ │ │ │ ├── output_adapters.hpp │ │ │ │ └── serializer.hpp │ │ │ ├── string_concat.hpp │ │ │ ├── string_escape.hpp │ │ │ └── value_t.hpp │ │ ├── json.hpp │ │ ├── json_fwd.hpp │ │ ├── ordered_map.hpp │ │ └── thirdparty │ │ │ └── hedley │ │ │ ├── hedley.hpp │ │ │ └── hedley_undef.hpp │ └── rosDemoCRV4.h ├── launch │ └── democr_v4.launch ├── package.xml ├── src │ ├── main.cpp │ └── rosDemoCRV4.cpp └── srv │ ├── AI.srv │ ├── AO.srv │ ├── AOInstant.srv │ ├── AccJ.srv │ ├── AccL.srv │ ├── Arc.srv │ ├── BrakeControl.srv │ ├── CP.srv │ ├── CalcTool.srv │ ├── CalcUser.srv │ ├── Circle.srv │ ├── ClearError.srv │ ├── Continue.srv │ ├── DI.srv │ ├── DIGroup.srv │ ├── DO.srv │ ├── DOGroup.srv │ ├── DOInstant.srv │ ├── DisableRobot.srv │ ├── DragSensivity.srv │ ├── EmergencyStop.srv │ ├── EnableRobot.srv │ ├── EnableSafeSkin.srv │ ├── GetAO.srv │ ├── GetAngle.srv │ ├── GetCoils.srv │ ├── GetCurrentCommandId.srv │ ├── GetDO.srv │ ├── GetDOGroup.srv │ ├── GetErrorID.srv │ ├── GetHoldRegs.srv │ ├── GetInBits.srv │ ├── GetInRegs.srv │ ├── GetInputBool.srv │ ├── GetInputFloat.srv │ ├── GetInputInt.srv │ ├── GetOutputBool.srv │ ├── GetOutputFloat.srv │ ├── GetOutputInt.srv │ ├── GetPose.srv │ ├── GetStartPose.srv │ ├── InverseKin.srv │ ├── InverseSolution.srv │ ├── ModbusClose.srv │ ├── ModbusCreate.srv │ ├── ModbusRTUCreate.srv │ ├── MovJ.srv │ ├── MovJIO.srv │ ├── MovL.srv │ ├── MovLIO.srv │ ├── MoveJog.srv │ ├── Pause.srv │ ├── PositiveKin.srv │ ├── PowerOn.srv │ ├── RelJointMovJ.srv │ ├── RelMovJTool.srv │ ├── RelMovJUser.srv │ ├── RelMovLTool.srv │ ├── RelMovLUser.srv │ ├── RobotMode.srv │ ├── RunScript.srv │ ├── ServoJ.srv │ ├── ServoP.srv │ ├── SetBackDistance.srv │ ├── SetCoils.srv │ ├── SetCollisionLevel.srv │ ├── SetHoldRegs.srv │ ├── SetOutputBool.srv │ ├── SetOutputFloat.srv │ ├── SetOutputInt.srv │ ├── SetPayload.srv │ ├── SetPostCollisionMode.srv │ ├── SetSafeSkin.srv │ ├── SetSafeWallEnable.srv │ ├── SetTool.srv │ ├── SetTool485.srv │ ├── SetToolMode.srv │ ├── SetToolPower.srv │ ├── SetUser.srv │ ├── SpeedFactor.srv │ ├── StartDrag.srv │ ├── StartPath.srv │ ├── Stop.srv │ ├── StopDrag.srv │ ├── StopMoveJog.srv │ ├── TcpDashboard.srv │ ├── Tool.srv │ ├── ToolAI.srv │ ├── ToolDI.srv │ ├── ToolDO.srv │ ├── ToolDOInstant.srv │ ├── User.srv │ ├── VelJ.srv │ └── VelL.srv └── rviz_dobot_control ├── CMakeLists.txt ├── include └── nlohmann │ ├── adl_serializer.hpp │ ├── byte_container_with_subtype.hpp │ ├── detail │ ├── abi_macros.hpp │ ├── conversions │ │ ├── from_json.hpp │ │ ├── to_chars.hpp │ │ └── to_json.hpp │ ├── exceptions.hpp │ ├── hash.hpp │ ├── input │ │ ├── binary_reader.hpp │ │ ├── input_adapters.hpp │ │ ├── json_sax.hpp │ │ ├── lexer.hpp │ │ ├── parser.hpp │ │ └── position_t.hpp │ ├── iterators │ │ ├── internal_iterator.hpp │ │ ├── iter_impl.hpp │ │ ├── iteration_proxy.hpp │ │ ├── iterator_traits.hpp │ │ ├── json_reverse_iterator.hpp │ │ └── primitive_iterator.hpp │ ├── json_custom_base_class.hpp │ ├── json_pointer.hpp │ ├── json_ref.hpp │ ├── macro_scope.hpp │ ├── macro_unscope.hpp │ ├── meta │ │ ├── call_std │ │ │ ├── begin.hpp │ │ │ └── end.hpp │ │ ├── cpp_future.hpp │ │ ├── detected.hpp │ │ ├── identity_tag.hpp │ │ ├── is_sax.hpp │ │ ├── std_fs.hpp │ │ ├── type_traits.hpp │ │ └── void_t.hpp │ ├── output │ │ ├── binary_writer.hpp │ │ ├── output_adapters.hpp │ │ └── serializer.hpp │ ├── string_concat.hpp │ ├── string_escape.hpp │ └── value_t.hpp │ ├── json.hpp │ ├── json_fwd.hpp │ ├── ordered_map.hpp │ └── thirdparty │ └── hedley │ ├── hedley.hpp │ └── hedley_undef.hpp ├── package.xml ├── plugin_description.xml ├── robot_type.json └── src ├── rviz_dobot_control.cpp ├── rviz_dobot_control.h └── ui_control_menu.h /.changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/.changelog -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/LICENSE -------------------------------------------------------------------------------- /README-V3-EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/README-V3-EN.md -------------------------------------------------------------------------------- /README-V3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/README-V3.md -------------------------------------------------------------------------------- /README-V4-EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/README-V4-EN.md -------------------------------------------------------------------------------- /README-V4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/README-V4.md -------------------------------------------------------------------------------- /cr10_moveit/.setup_assistant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/.setup_assistant -------------------------------------------------------------------------------- /cr10_moveit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/CMakeLists.txt -------------------------------------------------------------------------------- /cr10_moveit/config/cartesian_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/config/cartesian_limits.yaml -------------------------------------------------------------------------------- /cr10_moveit/config/chomp_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/config/chomp_planning.yaml -------------------------------------------------------------------------------- /cr10_moveit/config/cr10_robot.srdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/config/cr10_robot.srdf -------------------------------------------------------------------------------- /cr10_moveit/config/fake_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/config/fake_controllers.yaml -------------------------------------------------------------------------------- /cr10_moveit/config/joint_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/config/joint_limits.yaml -------------------------------------------------------------------------------- /cr10_moveit/config/kinematics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/config/kinematics.yaml -------------------------------------------------------------------------------- /cr10_moveit/config/ompl_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/config/ompl_planning.yaml -------------------------------------------------------------------------------- /cr10_moveit/config/ros_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/config/ros_controllers.yaml -------------------------------------------------------------------------------- /cr10_moveit/config/sensors_3d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/config/sensors_3d.yaml -------------------------------------------------------------------------------- /cr10_moveit/launch/cr10_moveit.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/launch/cr10_moveit.launch -------------------------------------------------------------------------------- /cr10_moveit/launch/default_warehouse_db.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/launch/default_warehouse_db.launch -------------------------------------------------------------------------------- /cr10_moveit/launch/demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/launch/demo.launch -------------------------------------------------------------------------------- /cr10_moveit/launch/joystick_control.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/launch/joystick_control.launch -------------------------------------------------------------------------------- /cr10_moveit/launch/move_group.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/launch/move_group.launch -------------------------------------------------------------------------------- /cr10_moveit/launch/moveit.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/launch/moveit.rviz -------------------------------------------------------------------------------- /cr10_moveit/launch/moveit_rviz.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/launch/moveit_rviz.launch -------------------------------------------------------------------------------- /cr10_moveit/launch/planning_context.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/launch/planning_context.launch -------------------------------------------------------------------------------- /cr10_moveit/launch/planning_pipeline.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/launch/planning_pipeline.launch.xml -------------------------------------------------------------------------------- /cr10_moveit/launch/ros_controllers.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/launch/ros_controllers.launch -------------------------------------------------------------------------------- /cr10_moveit/launch/run_benchmark_ompl.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/launch/run_benchmark_ompl.launch -------------------------------------------------------------------------------- /cr10_moveit/launch/sensor_manager.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/launch/sensor_manager.launch.xml -------------------------------------------------------------------------------- /cr10_moveit/launch/setup_assistant.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/launch/setup_assistant.launch -------------------------------------------------------------------------------- /cr10_moveit/launch/warehouse.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/launch/warehouse.launch -------------------------------------------------------------------------------- /cr10_moveit/launch/warehouse_settings.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/launch/warehouse_settings.launch.xml -------------------------------------------------------------------------------- /cr10_moveit/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr10_moveit/package.xml -------------------------------------------------------------------------------- /cr12_moveit/.setup_assistant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/.setup_assistant -------------------------------------------------------------------------------- /cr12_moveit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/CMakeLists.txt -------------------------------------------------------------------------------- /cr12_moveit/config/cartesian_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/config/cartesian_limits.yaml -------------------------------------------------------------------------------- /cr12_moveit/config/chomp_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/config/chomp_planning.yaml -------------------------------------------------------------------------------- /cr12_moveit/config/cr12_robot.srdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/config/cr12_robot.srdf -------------------------------------------------------------------------------- /cr12_moveit/config/fake_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/config/fake_controllers.yaml -------------------------------------------------------------------------------- /cr12_moveit/config/gazebo_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/config/gazebo_controllers.yaml -------------------------------------------------------------------------------- /cr12_moveit/config/gazebo_cr12_robot.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/config/gazebo_cr12_robot.urdf -------------------------------------------------------------------------------- /cr12_moveit/config/joint_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/config/joint_limits.yaml -------------------------------------------------------------------------------- /cr12_moveit/config/kinematics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/config/kinematics.yaml -------------------------------------------------------------------------------- /cr12_moveit/config/ompl_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/config/ompl_planning.yaml -------------------------------------------------------------------------------- /cr12_moveit/config/ros_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/config/ros_controllers.yaml -------------------------------------------------------------------------------- /cr12_moveit/config/sensors_3d.yaml: -------------------------------------------------------------------------------- 1 | sensors: 2 | [] -------------------------------------------------------------------------------- /cr12_moveit/config/stomp_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/config/stomp_planning.yaml -------------------------------------------------------------------------------- /cr12_moveit/launch/cr12_moveit.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/launch/cr12_moveit.launch -------------------------------------------------------------------------------- /cr12_moveit/launch/default_warehouse_db.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/launch/default_warehouse_db.launch -------------------------------------------------------------------------------- /cr12_moveit/launch/demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/launch/demo.launch -------------------------------------------------------------------------------- /cr12_moveit/launch/joystick_control.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/launch/joystick_control.launch -------------------------------------------------------------------------------- /cr12_moveit/launch/move_group.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/launch/move_group.launch -------------------------------------------------------------------------------- /cr12_moveit/launch/moveit.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/launch/moveit.rviz -------------------------------------------------------------------------------- /cr12_moveit/launch/moveit_rviz.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/launch/moveit_rviz.launch -------------------------------------------------------------------------------- /cr12_moveit/launch/planning_context.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/launch/planning_context.launch -------------------------------------------------------------------------------- /cr12_moveit/launch/planning_pipeline.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/launch/planning_pipeline.launch.xml -------------------------------------------------------------------------------- /cr12_moveit/launch/ros_controllers.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/launch/ros_controllers.launch -------------------------------------------------------------------------------- /cr12_moveit/launch/run_benchmark_ompl.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/launch/run_benchmark_ompl.launch -------------------------------------------------------------------------------- /cr12_moveit/launch/sensor_manager.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/launch/sensor_manager.launch.xml -------------------------------------------------------------------------------- /cr12_moveit/launch/setup_assistant.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/launch/setup_assistant.launch -------------------------------------------------------------------------------- /cr12_moveit/launch/warehouse.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/launch/warehouse.launch -------------------------------------------------------------------------------- /cr12_moveit/launch/warehouse_settings.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/launch/warehouse_settings.launch.xml -------------------------------------------------------------------------------- /cr12_moveit/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr12_moveit/package.xml -------------------------------------------------------------------------------- /cr16_moveit/.setup_assistant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/.setup_assistant -------------------------------------------------------------------------------- /cr16_moveit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/CMakeLists.txt -------------------------------------------------------------------------------- /cr16_moveit/config/cartesian_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/config/cartesian_limits.yaml -------------------------------------------------------------------------------- /cr16_moveit/config/chomp_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/config/chomp_planning.yaml -------------------------------------------------------------------------------- /cr16_moveit/config/cr16_robot.srdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/config/cr16_robot.srdf -------------------------------------------------------------------------------- /cr16_moveit/config/fake_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/config/fake_controllers.yaml -------------------------------------------------------------------------------- /cr16_moveit/config/joint_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/config/joint_limits.yaml -------------------------------------------------------------------------------- /cr16_moveit/config/kinematics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/config/kinematics.yaml -------------------------------------------------------------------------------- /cr16_moveit/config/ompl_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/config/ompl_planning.yaml -------------------------------------------------------------------------------- /cr16_moveit/config/ros_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/config/ros_controllers.yaml -------------------------------------------------------------------------------- /cr16_moveit/config/sensors_3d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/config/sensors_3d.yaml -------------------------------------------------------------------------------- /cr16_moveit/launch/cr16_moveit.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/launch/cr16_moveit.launch -------------------------------------------------------------------------------- /cr16_moveit/launch/default_warehouse_db.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/launch/default_warehouse_db.launch -------------------------------------------------------------------------------- /cr16_moveit/launch/demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/launch/demo.launch -------------------------------------------------------------------------------- /cr16_moveit/launch/joystick_control.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/launch/joystick_control.launch -------------------------------------------------------------------------------- /cr16_moveit/launch/move_group.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/launch/move_group.launch -------------------------------------------------------------------------------- /cr16_moveit/launch/moveit.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/launch/moveit.rviz -------------------------------------------------------------------------------- /cr16_moveit/launch/moveit_rviz.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/launch/moveit_rviz.launch -------------------------------------------------------------------------------- /cr16_moveit/launch/planning_context.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/launch/planning_context.launch -------------------------------------------------------------------------------- /cr16_moveit/launch/planning_pipeline.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/launch/planning_pipeline.launch.xml -------------------------------------------------------------------------------- /cr16_moveit/launch/ros_controllers.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/launch/ros_controllers.launch -------------------------------------------------------------------------------- /cr16_moveit/launch/run_benchmark_ompl.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/launch/run_benchmark_ompl.launch -------------------------------------------------------------------------------- /cr16_moveit/launch/sensor_manager.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/launch/sensor_manager.launch.xml -------------------------------------------------------------------------------- /cr16_moveit/launch/setup_assistant.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/launch/setup_assistant.launch -------------------------------------------------------------------------------- /cr16_moveit/launch/warehouse.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/launch/warehouse.launch -------------------------------------------------------------------------------- /cr16_moveit/launch/warehouse_settings.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/launch/warehouse_settings.launch.xml -------------------------------------------------------------------------------- /cr16_moveit/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr16_moveit/package.xml -------------------------------------------------------------------------------- /cr3_moveit/.setup_assistant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/.setup_assistant -------------------------------------------------------------------------------- /cr3_moveit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/CMakeLists.txt -------------------------------------------------------------------------------- /cr3_moveit/config/cartesian_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/config/cartesian_limits.yaml -------------------------------------------------------------------------------- /cr3_moveit/config/chomp_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/config/chomp_planning.yaml -------------------------------------------------------------------------------- /cr3_moveit/config/cr3_robot.srdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/config/cr3_robot.srdf -------------------------------------------------------------------------------- /cr3_moveit/config/fake_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/config/fake_controllers.yaml -------------------------------------------------------------------------------- /cr3_moveit/config/joint_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/config/joint_limits.yaml -------------------------------------------------------------------------------- /cr3_moveit/config/kinematics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/config/kinematics.yaml -------------------------------------------------------------------------------- /cr3_moveit/config/ompl_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/config/ompl_planning.yaml -------------------------------------------------------------------------------- /cr3_moveit/config/ros_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/config/ros_controllers.yaml -------------------------------------------------------------------------------- /cr3_moveit/config/sensors_3d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/config/sensors_3d.yaml -------------------------------------------------------------------------------- /cr3_moveit/launch/cr3_moveit.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/launch/cr3_moveit.launch -------------------------------------------------------------------------------- /cr3_moveit/launch/default_warehouse_db.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/launch/default_warehouse_db.launch -------------------------------------------------------------------------------- /cr3_moveit/launch/demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/launch/demo.launch -------------------------------------------------------------------------------- /cr3_moveit/launch/joystick_control.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/launch/joystick_control.launch -------------------------------------------------------------------------------- /cr3_moveit/launch/move_group.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/launch/move_group.launch -------------------------------------------------------------------------------- /cr3_moveit/launch/moveit.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/launch/moveit.rviz -------------------------------------------------------------------------------- /cr3_moveit/launch/moveit_rviz.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/launch/moveit_rviz.launch -------------------------------------------------------------------------------- /cr3_moveit/launch/planning_context.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/launch/planning_context.launch -------------------------------------------------------------------------------- /cr3_moveit/launch/planning_pipeline.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/launch/planning_pipeline.launch.xml -------------------------------------------------------------------------------- /cr3_moveit/launch/ros_controllers.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/launch/ros_controllers.launch -------------------------------------------------------------------------------- /cr3_moveit/launch/run_benchmark_ompl.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/launch/run_benchmark_ompl.launch -------------------------------------------------------------------------------- /cr3_moveit/launch/sensor_manager.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/launch/sensor_manager.launch.xml -------------------------------------------------------------------------------- /cr3_moveit/launch/setup_assistant.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/launch/setup_assistant.launch -------------------------------------------------------------------------------- /cr3_moveit/launch/warehouse.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/launch/warehouse.launch -------------------------------------------------------------------------------- /cr3_moveit/launch/warehouse_settings.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/launch/warehouse_settings.launch.xml -------------------------------------------------------------------------------- /cr3_moveit/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr3_moveit/package.xml -------------------------------------------------------------------------------- /cr5_moveit/.setup_assistant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/.setup_assistant -------------------------------------------------------------------------------- /cr5_moveit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/CMakeLists.txt -------------------------------------------------------------------------------- /cr5_moveit/config/cartesian_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/config/cartesian_limits.yaml -------------------------------------------------------------------------------- /cr5_moveit/config/chomp_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/config/chomp_planning.yaml -------------------------------------------------------------------------------- /cr5_moveit/config/cr5_robot.srdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/config/cr5_robot.srdf -------------------------------------------------------------------------------- /cr5_moveit/config/fake_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/config/fake_controllers.yaml -------------------------------------------------------------------------------- /cr5_moveit/config/joint_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/config/joint_limits.yaml -------------------------------------------------------------------------------- /cr5_moveit/config/kinematics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/config/kinematics.yaml -------------------------------------------------------------------------------- /cr5_moveit/config/ompl_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/config/ompl_planning.yaml -------------------------------------------------------------------------------- /cr5_moveit/config/ros_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/config/ros_controllers.yaml -------------------------------------------------------------------------------- /cr5_moveit/config/sensors_3d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/config/sensors_3d.yaml -------------------------------------------------------------------------------- /cr5_moveit/launch/cr5_moveit.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/launch/cr5_moveit.launch -------------------------------------------------------------------------------- /cr5_moveit/launch/default_warehouse_db.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/launch/default_warehouse_db.launch -------------------------------------------------------------------------------- /cr5_moveit/launch/demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/launch/demo.launch -------------------------------------------------------------------------------- /cr5_moveit/launch/joystick_control.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/launch/joystick_control.launch -------------------------------------------------------------------------------- /cr5_moveit/launch/move_group.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/launch/move_group.launch -------------------------------------------------------------------------------- /cr5_moveit/launch/moveit.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/launch/moveit.rviz -------------------------------------------------------------------------------- /cr5_moveit/launch/moveit_rviz.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/launch/moveit_rviz.launch -------------------------------------------------------------------------------- /cr5_moveit/launch/planning_context.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/launch/planning_context.launch -------------------------------------------------------------------------------- /cr5_moveit/launch/planning_pipeline.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/launch/planning_pipeline.launch.xml -------------------------------------------------------------------------------- /cr5_moveit/launch/ros_controllers.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/launch/ros_controllers.launch -------------------------------------------------------------------------------- /cr5_moveit/launch/run_benchmark_ompl.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/launch/run_benchmark_ompl.launch -------------------------------------------------------------------------------- /cr5_moveit/launch/sensor_manager.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/launch/sensor_manager.launch.xml -------------------------------------------------------------------------------- /cr5_moveit/launch/setup_assistant.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/launch/setup_assistant.launch -------------------------------------------------------------------------------- /cr5_moveit/launch/warehouse.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/launch/warehouse.launch -------------------------------------------------------------------------------- /cr5_moveit/launch/warehouse_settings.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/launch/warehouse_settings.launch.xml -------------------------------------------------------------------------------- /cr5_moveit/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5_moveit/package.xml -------------------------------------------------------------------------------- /cr5control/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5control/src/main.cpp -------------------------------------------------------------------------------- /cr5control/src/main_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5control/src/main_menu.cpp -------------------------------------------------------------------------------- /cr5control/src/main_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5control/src/main_menu.h -------------------------------------------------------------------------------- /cr5control/src/main_menu.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5control/src/main_menu.ui -------------------------------------------------------------------------------- /cr5robot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5robot/CMakeLists.txt -------------------------------------------------------------------------------- /cr5robot/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr5robot/package.xml -------------------------------------------------------------------------------- /cr7_moveit/.setup_assistant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/.setup_assistant -------------------------------------------------------------------------------- /cr7_moveit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/CMakeLists.txt -------------------------------------------------------------------------------- /cr7_moveit/config/cartesian_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/config/cartesian_limits.yaml -------------------------------------------------------------------------------- /cr7_moveit/config/chomp_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/config/chomp_planning.yaml -------------------------------------------------------------------------------- /cr7_moveit/config/cr7_robot.srdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/config/cr7_robot.srdf -------------------------------------------------------------------------------- /cr7_moveit/config/fake_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/config/fake_controllers.yaml -------------------------------------------------------------------------------- /cr7_moveit/config/gazebo_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/config/gazebo_controllers.yaml -------------------------------------------------------------------------------- /cr7_moveit/config/gazebo_cr7_robot.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/config/gazebo_cr7_robot.urdf -------------------------------------------------------------------------------- /cr7_moveit/config/joint_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/config/joint_limits.yaml -------------------------------------------------------------------------------- /cr7_moveit/config/kinematics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/config/kinematics.yaml -------------------------------------------------------------------------------- /cr7_moveit/config/ompl_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/config/ompl_planning.yaml -------------------------------------------------------------------------------- /cr7_moveit/config/ros_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/config/ros_controllers.yaml -------------------------------------------------------------------------------- /cr7_moveit/config/sensors_3d.yaml: -------------------------------------------------------------------------------- 1 | sensors: 2 | [] -------------------------------------------------------------------------------- /cr7_moveit/config/simple_moveit_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/config/simple_moveit_controllers.yaml -------------------------------------------------------------------------------- /cr7_moveit/config/stomp_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/config/stomp_planning.yaml -------------------------------------------------------------------------------- /cr7_moveit/launch/cr7_moveit.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch/cr7_moveit.launch -------------------------------------------------------------------------------- /cr7_moveit/launch/default_warehouse_db.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch/default_warehouse_db.launch -------------------------------------------------------------------------------- /cr7_moveit/launch/demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch/demo.launch -------------------------------------------------------------------------------- /cr7_moveit/launch/joystick_control.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch/joystick_control.launch -------------------------------------------------------------------------------- /cr7_moveit/launch/move_group.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch/move_group.launch -------------------------------------------------------------------------------- /cr7_moveit/launch/moveit.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch/moveit.rviz -------------------------------------------------------------------------------- /cr7_moveit/launch/moveit_rviz.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch/moveit_rviz.launch -------------------------------------------------------------------------------- /cr7_moveit/launch/planning_context.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch/planning_context.launch -------------------------------------------------------------------------------- /cr7_moveit/launch/planning_pipeline.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch/planning_pipeline.launch.xml -------------------------------------------------------------------------------- /cr7_moveit/launch/ros_controllers.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch/ros_controllers.launch -------------------------------------------------------------------------------- /cr7_moveit/launch/run_benchmark_ompl.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch/run_benchmark_ompl.launch -------------------------------------------------------------------------------- /cr7_moveit/launch/sensor_manager.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch/sensor_manager.launch.xml -------------------------------------------------------------------------------- /cr7_moveit/launch/setup_assistant.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch/setup_assistant.launch -------------------------------------------------------------------------------- /cr7_moveit/launch/warehouse.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch/warehouse.launch -------------------------------------------------------------------------------- /cr7_moveit/launch/warehouse_settings.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch/warehouse_settings.launch.xml -------------------------------------------------------------------------------- /cr7_moveit/launch_/cr7_moveit.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch_/cr7_moveit.launch -------------------------------------------------------------------------------- /cr7_moveit/launch_/default_warehouse_db.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch_/default_warehouse_db.launch -------------------------------------------------------------------------------- /cr7_moveit/launch_/demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch_/demo.launch -------------------------------------------------------------------------------- /cr7_moveit/launch_/demo_gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch_/demo_gazebo.launch -------------------------------------------------------------------------------- /cr7_moveit/launch_/gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch_/gazebo.launch -------------------------------------------------------------------------------- /cr7_moveit/launch_/joystick_control.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch_/joystick_control.launch -------------------------------------------------------------------------------- /cr7_moveit/launch_/move_group.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch_/move_group.launch -------------------------------------------------------------------------------- /cr7_moveit/launch_/moveit.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch_/moveit.rviz -------------------------------------------------------------------------------- /cr7_moveit/launch_/moveit_rviz.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch_/moveit_rviz.launch -------------------------------------------------------------------------------- /cr7_moveit/launch_/planning_context.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch_/planning_context.launch -------------------------------------------------------------------------------- /cr7_moveit/launch_/planning_pipeline.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch_/planning_pipeline.launch.xml -------------------------------------------------------------------------------- /cr7_moveit/launch_/ros_controllers.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch_/ros_controllers.launch -------------------------------------------------------------------------------- /cr7_moveit/launch_/run_benchmark_ompl.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch_/run_benchmark_ompl.launch -------------------------------------------------------------------------------- /cr7_moveit/launch_/sensor_manager.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch_/sensor_manager.launch.xml -------------------------------------------------------------------------------- /cr7_moveit/launch_/setup_assistant.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch_/setup_assistant.launch -------------------------------------------------------------------------------- /cr7_moveit/launch_/warehouse.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch_/warehouse.launch -------------------------------------------------------------------------------- /cr7_moveit/launch_/warehouse_settings.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/launch_/warehouse_settings.launch.xml -------------------------------------------------------------------------------- /cr7_moveit/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/cr7_moveit/package.xml -------------------------------------------------------------------------------- /dobot_bringup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/CMakeLists.txt -------------------------------------------------------------------------------- /dobot_bringup/include/dobot_bringup/commander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/include/dobot_bringup/commander.h -------------------------------------------------------------------------------- /dobot_bringup/include/dobot_bringup/cr5_robot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/include/dobot_bringup/cr5_robot.h -------------------------------------------------------------------------------- /dobot_bringup/include/dobot_bringup/tcp_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/include/dobot_bringup/tcp_socket.h -------------------------------------------------------------------------------- /dobot_bringup/include/nlohmann/detail/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/include/nlohmann/detail/hash.hpp -------------------------------------------------------------------------------- /dobot_bringup/include/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/include/nlohmann/json.hpp -------------------------------------------------------------------------------- /dobot_bringup/include/nlohmann/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/include/nlohmann/json_fwd.hpp -------------------------------------------------------------------------------- /dobot_bringup/include/nlohmann/ordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/include/nlohmann/ordered_map.hpp -------------------------------------------------------------------------------- /dobot_bringup/launch/bringup.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/launch/bringup.launch -------------------------------------------------------------------------------- /dobot_bringup/msg/RobotStatus.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/msg/RobotStatus.msg -------------------------------------------------------------------------------- /dobot_bringup/msg/ToolVectorActual.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/msg/ToolVectorActual.msg -------------------------------------------------------------------------------- /dobot_bringup/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/package.xml -------------------------------------------------------------------------------- /dobot_bringup/src/RosExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/src/RosExample.cpp -------------------------------------------------------------------------------- /dobot_bringup/src/cr5_robot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/src/cr5_robot.cpp -------------------------------------------------------------------------------- /dobot_bringup/src/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/src/demo.cpp -------------------------------------------------------------------------------- /dobot_bringup/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/src/main.cpp -------------------------------------------------------------------------------- /dobot_bringup/src/tcp_socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/src/tcp_socket.cpp -------------------------------------------------------------------------------- /dobot_bringup/srv/AI.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/AI.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/AO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/AO.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/AOExecute.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/AOExecute.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/AccJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/AccJ.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/AccL.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/AccL.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/Arc.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/Arc.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/Arch.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/Arch.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/BrakeControl.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/BrakeControl.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/CP.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/CP.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/Circle.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/Circle.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/ClearError.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/ContinueScript.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/Continues.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/DI.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/DI.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/DIGroup.srv: -------------------------------------------------------------------------------- 1 | int32[] args 2 | 3 | --- 4 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/DO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/DO.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/DOExecute.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/DOExecute.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/DOGroup.srv: -------------------------------------------------------------------------------- 1 | int32[] args 2 | 3 | --- 4 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/DigitalOutputs.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/DigitalOutputs.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/DisableRobot.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/EmergencyStop.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/EnableRobot.srv: -------------------------------------------------------------------------------- 1 | float64[] args 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/GetAngle.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/GetCoils.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/GetCoils.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/GetErrorID.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/GetErrorID.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/GetHoldRegs.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/GetHoldRegs.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/GetInBits.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/GetInBits.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/GetInRegs.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/GetInRegs.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/GetPathStartPose.srv: -------------------------------------------------------------------------------- 1 | string traceName 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/GetPose.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/GetPose.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/GetSixForceData.srv: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/GetTerminal485.srv: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/GetTraceStartPose.srv: -------------------------------------------------------------------------------- 1 | string traceName 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/HandleTrajPoints.srv: -------------------------------------------------------------------------------- 1 | string traceName 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/InverseSolution.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/InverseSolution.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/JointMovJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/JointMovJ.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/Jump.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/Jump.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/LimZ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/LimZ.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/LoadSwitch.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/LoadSwitch.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/ModbusClose.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/ModbusClose.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/ModbusCreate.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/ModbusCreate.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/MovJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/MovJ.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/MovJExt.srv: -------------------------------------------------------------------------------- 1 | float64 offset 2 | string[] paramValue 3 | --- 4 | 5 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/MovJIO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/MovJIO.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/MovL.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/MovL.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/MovLIO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/MovLIO.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/MoveJog.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/MoveJog.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/PauseScript.srv: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/PayLoad.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/PayLoad.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/PositiveSolution.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/PositiveSolution.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/PowerOn.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/RelJointMovJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/RelJointMovJ.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/RelMovJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/RelMovJ.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/RelMovJTool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/RelMovJTool.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/RelMovJUser.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/RelMovJUser.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/RelMovL.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/RelMovL.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/RelMovLTool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/RelMovLTool.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/RelMovLUser.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/RelMovLUser.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/ResetRobot.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/RobotMode.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/RobotMode.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/RunScript.srv: -------------------------------------------------------------------------------- 1 | string projectName 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/ServoJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/ServoJ.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/ServoJParam.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/ServoJParam.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/ServoP.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/ServoP.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/SetArmOrientation.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/SetArmOrientation.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/SetCoils.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/SetCoils.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/SetCollideDrag.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/SetCollideDrag.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/SetCollisionLevel.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/SetCollisionLevel.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/SetHoldRegs.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/SetHoldRegs.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/SetObstacleAvoid.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/SetObstacleAvoid.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/SetPayload.srv: -------------------------------------------------------------------------------- 1 | float64 load 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/SetSafeSkin.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/SetSafeSkin.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/SetTerminal485.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/SetTerminal485.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/SetTerminalKeys.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/SetTerminalKeys.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/SpeedFactor.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/SpeedFactor.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/SpeedJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/SpeedJ.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/SpeedL.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/SpeedL.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/StartDrag.srv: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/StartFCTrace.srv: -------------------------------------------------------------------------------- 1 | string trace_name 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/StartPath.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/StartPath.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/StartTrace.srv: -------------------------------------------------------------------------------- 1 | string trace_name 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/StopDrag.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/StopScript.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/StopmoveJog.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/Sync.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/SyncAll.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/TCPSpeed.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/TCPSpeed.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/TCPSpeedEnd.srv: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_bringup/srv/TcpDashboard.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/TcpDashboard.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/TcpRealData.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/TcpRealData.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/Tool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/Tool.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/ToolAI.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/ToolAI.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/ToolDI.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/ToolDI.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/ToolDO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/ToolDO.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/ToolDOExecute.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/ToolDOExecute.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/User.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/User.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/Wait.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_bringup/srv/Wait.srv -------------------------------------------------------------------------------- /dobot_bringup/srv/pause.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_description/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/CMakeLists.txt -------------------------------------------------------------------------------- /dobot_description/launch/display.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/launch/display.launch -------------------------------------------------------------------------------- /dobot_description/meshes/cr10/Link1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr10/Link1.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr10/Link2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr10/Link2.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr10/Link3.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr10/Link3.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr10/Link4.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr10/Link4.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr10/Link5.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr10/Link5.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr10/Link6.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr10/Link6.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr10/base_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr10/base_link.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr12/J1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr12/J1.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr12/J2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr12/J2.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr12/J3.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr12/J3.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr12/J4.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr12/J4.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr12/J5.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr12/J5.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr12/J6.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr12/J6.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr12/base_link0.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr12/base_link0.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr16/Link1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr16/Link1.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr16/Link2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr16/Link2.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr16/Link3.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr16/Link3.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr16/Link4.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr16/Link4.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr16/Link5.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr16/Link5.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr16/Link6.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr16/Link6.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr16/base_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr16/base_link.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr3/Link1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr3/Link1.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr3/Link2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr3/Link2.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr3/Link3.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr3/Link3.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr3/Link4.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr3/Link4.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr3/Link5.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr3/Link5.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr3/Link6.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr3/Link6.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr3/base_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr3/base_link.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr5/Link1.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr5/Link1.dae -------------------------------------------------------------------------------- /dobot_description/meshes/cr5/Link2.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr5/Link2.dae -------------------------------------------------------------------------------- /dobot_description/meshes/cr5/Link3.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr5/Link3.dae -------------------------------------------------------------------------------- /dobot_description/meshes/cr5/Link4.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr5/Link4.dae -------------------------------------------------------------------------------- /dobot_description/meshes/cr5/Link5.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr5/Link5.dae -------------------------------------------------------------------------------- /dobot_description/meshes/cr5/Link6.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr5/Link6.dae -------------------------------------------------------------------------------- /dobot_description/meshes/cr5/base_link.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr5/base_link.dae -------------------------------------------------------------------------------- /dobot_description/meshes/cr7/J1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr7/J1.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr7/J2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr7/J2.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr7/J3.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr7/J3.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr7/J4.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr7/J4.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr7/J5.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr7/J5.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr7/J6.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr7/J6.STL -------------------------------------------------------------------------------- /dobot_description/meshes/cr7/base_link0.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/cr7/base_link0.STL -------------------------------------------------------------------------------- /dobot_description/meshes/me6/Link1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/me6/Link1.STL -------------------------------------------------------------------------------- /dobot_description/meshes/me6/Link2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/me6/Link2.STL -------------------------------------------------------------------------------- /dobot_description/meshes/me6/Link3.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/me6/Link3.STL -------------------------------------------------------------------------------- /dobot_description/meshes/me6/Link4.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/me6/Link4.STL -------------------------------------------------------------------------------- /dobot_description/meshes/me6/Link5.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/me6/Link5.STL -------------------------------------------------------------------------------- /dobot_description/meshes/me6/Link6.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/me6/Link6.STL -------------------------------------------------------------------------------- /dobot_description/meshes/me6/base_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/me6/base_link.STL -------------------------------------------------------------------------------- /dobot_description/meshes/nova2/Link1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/nova2/Link1.STL -------------------------------------------------------------------------------- /dobot_description/meshes/nova2/Link2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/nova2/Link2.STL -------------------------------------------------------------------------------- /dobot_description/meshes/nova2/Link3.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/nova2/Link3.STL -------------------------------------------------------------------------------- /dobot_description/meshes/nova2/Link4.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/nova2/Link4.STL -------------------------------------------------------------------------------- /dobot_description/meshes/nova2/Link5.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/nova2/Link5.STL -------------------------------------------------------------------------------- /dobot_description/meshes/nova2/Link6.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/nova2/Link6.STL -------------------------------------------------------------------------------- /dobot_description/meshes/nova2/base_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/nova2/base_link.STL -------------------------------------------------------------------------------- /dobot_description/meshes/nova5/Link1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/nova5/Link1.STL -------------------------------------------------------------------------------- /dobot_description/meshes/nova5/Link2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/nova5/Link2.STL -------------------------------------------------------------------------------- /dobot_description/meshes/nova5/Link3.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/nova5/Link3.STL -------------------------------------------------------------------------------- /dobot_description/meshes/nova5/Link4.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/nova5/Link4.STL -------------------------------------------------------------------------------- /dobot_description/meshes/nova5/Link5.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/nova5/Link5.STL -------------------------------------------------------------------------------- /dobot_description/meshes/nova5/Link6.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/nova5/Link6.STL -------------------------------------------------------------------------------- /dobot_description/meshes/nova5/base_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/meshes/nova5/base_link.STL -------------------------------------------------------------------------------- /dobot_description/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/package.xml -------------------------------------------------------------------------------- /dobot_description/rviz/urdf.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/rviz/urdf.rviz -------------------------------------------------------------------------------- /dobot_description/urdf/cr10_robot.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/urdf/cr10_robot.urdf -------------------------------------------------------------------------------- /dobot_description/urdf/cr12_robot.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/urdf/cr12_robot.urdf -------------------------------------------------------------------------------- /dobot_description/urdf/cr16_robot.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/urdf/cr16_robot.urdf -------------------------------------------------------------------------------- /dobot_description/urdf/cr3_robot.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/urdf/cr3_robot.urdf -------------------------------------------------------------------------------- /dobot_description/urdf/cr5_robot.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/urdf/cr5_robot.urdf -------------------------------------------------------------------------------- /dobot_description/urdf/cr7_robot.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/urdf/cr7_robot.urdf -------------------------------------------------------------------------------- /dobot_description/urdf/me6_robot.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/urdf/me6_robot.urdf -------------------------------------------------------------------------------- /dobot_description/urdf/nova2_robot.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/urdf/nova2_robot.urdf -------------------------------------------------------------------------------- /dobot_description/urdf/nova5_robot.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_description/urdf/nova5_robot.urdf -------------------------------------------------------------------------------- /dobot_gazebo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/CMakeLists.txt -------------------------------------------------------------------------------- /dobot_gazebo/config/cr10_moveit_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/config/cr10_moveit_controllers.yaml -------------------------------------------------------------------------------- /dobot_gazebo/config/cr12_moveit_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/config/cr12_moveit_controllers.yaml -------------------------------------------------------------------------------- /dobot_gazebo/config/cr16_moveit_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/config/cr16_moveit_controllers.yaml -------------------------------------------------------------------------------- /dobot_gazebo/config/cr3_moveit_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/config/cr3_moveit_controllers.yaml -------------------------------------------------------------------------------- /dobot_gazebo/config/cr5_moveit_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/config/cr5_moveit_controllers.yaml -------------------------------------------------------------------------------- /dobot_gazebo/config/cr7_moveit_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/config/cr7_moveit_controllers.yaml -------------------------------------------------------------------------------- /dobot_gazebo/config/me6_moveit_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/config/me6_moveit_controllers.yaml -------------------------------------------------------------------------------- /dobot_gazebo/launch/cr10_robot_description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/launch/cr10_robot_description.xml -------------------------------------------------------------------------------- /dobot_gazebo/launch/cr12_robot_description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/launch/cr12_robot_description.xml -------------------------------------------------------------------------------- /dobot_gazebo/launch/cr16_robot_description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/launch/cr16_robot_description.xml -------------------------------------------------------------------------------- /dobot_gazebo/launch/cr3_robot_description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/launch/cr3_robot_description.xml -------------------------------------------------------------------------------- /dobot_gazebo/launch/cr5_robot_description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/launch/cr5_robot_description.xml -------------------------------------------------------------------------------- /dobot_gazebo/launch/cr7_robot_description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/launch/cr7_robot_description.xml -------------------------------------------------------------------------------- /dobot_gazebo/launch/gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/launch/gazebo.launch -------------------------------------------------------------------------------- /dobot_gazebo/launch/me6_robot_description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/launch/me6_robot_description.xml -------------------------------------------------------------------------------- /dobot_gazebo/launch/nova2_robot_description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/launch/nova2_robot_description.xml -------------------------------------------------------------------------------- /dobot_gazebo/launch/nova5_robot_description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/launch/nova5_robot_description.xml -------------------------------------------------------------------------------- /dobot_gazebo/launch/robot_control.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/launch/robot_control.xml -------------------------------------------------------------------------------- /dobot_gazebo/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/package.xml -------------------------------------------------------------------------------- /dobot_gazebo/urdf/cr10_robot.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/urdf/cr10_robot.xacro -------------------------------------------------------------------------------- /dobot_gazebo/urdf/cr12_robot.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/urdf/cr12_robot.xacro -------------------------------------------------------------------------------- /dobot_gazebo/urdf/cr16_robot.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/urdf/cr16_robot.xacro -------------------------------------------------------------------------------- /dobot_gazebo/urdf/cr3_robot.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/urdf/cr3_robot.xacro -------------------------------------------------------------------------------- /dobot_gazebo/urdf/cr5_robot.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/urdf/cr5_robot.xacro -------------------------------------------------------------------------------- /dobot_gazebo/urdf/cr7_robot.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/urdf/cr7_robot.xacro -------------------------------------------------------------------------------- /dobot_gazebo/urdf/me6_robot.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/urdf/me6_robot.xacro -------------------------------------------------------------------------------- /dobot_gazebo/urdf/nova2_robot.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/urdf/nova2_robot.xacro -------------------------------------------------------------------------------- /dobot_gazebo/urdf/nova5_robot.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_gazebo/urdf/nova5_robot.xacro -------------------------------------------------------------------------------- /dobot_moveit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_moveit/CMakeLists.txt -------------------------------------------------------------------------------- /dobot_moveit/launch/demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_moveit/launch/demo.launch -------------------------------------------------------------------------------- /dobot_moveit/launch/moveit.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_moveit/launch/moveit.launch -------------------------------------------------------------------------------- /dobot_moveit/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_moveit/package.xml -------------------------------------------------------------------------------- /dobot_v4_bringup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/CMakeLists.txt -------------------------------------------------------------------------------- /dobot_v4_bringup/include/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/include/nlohmann/json.hpp -------------------------------------------------------------------------------- /dobot_v4_bringup/launch/bringup_v4.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/launch/bringup_v4.launch -------------------------------------------------------------------------------- /dobot_v4_bringup/msg/RobotStatus.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/msg/RobotStatus.msg -------------------------------------------------------------------------------- /dobot_v4_bringup/msg/ToolVectorActual.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/msg/ToolVectorActual.msg -------------------------------------------------------------------------------- /dobot_v4_bringup/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/package.xml -------------------------------------------------------------------------------- /dobot_v4_bringup/src/cr5_v4_robot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/src/cr5_v4_robot.cpp -------------------------------------------------------------------------------- /dobot_v4_bringup/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/src/main.cpp -------------------------------------------------------------------------------- /dobot_v4_bringup/src/parseTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/src/parseTool.cpp -------------------------------------------------------------------------------- /dobot_v4_bringup/src/tcp_socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/src/tcp_socket.cpp -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/AI.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/AI.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/AO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/AO.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/AOInstant.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/AOInstant.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/AccJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/AccJ.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/AccL.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/AccL.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/Arc.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/Arc.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/BrakeControl.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/BrakeControl.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/CP.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/CP.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/CalcTool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/CalcTool.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/CalcUser.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/CalcUser.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/Circle.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/Circle.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/ClearError.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/Continue.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/DI.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/DI.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/DIGroup.srv: -------------------------------------------------------------------------------- 1 | int32[] args 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/DO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/DO.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/DOGroup.srv: -------------------------------------------------------------------------------- 1 | int32[] args 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/DOInstant.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/DOInstant.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/DisableRobot.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/DragSensivity.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/DragSensivity.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/EmergencyStop.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/EmergencyStop.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/EnableRobot.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/EnableSafeSkin.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/EnableSafeSkin.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/GetAO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/GetAO.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/GetAngle.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/GetCoils.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/GetCoils.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/GetCurrentCommandId.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/GetDO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/GetDO.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/GetDOGroup.srv: -------------------------------------------------------------------------------- 1 | int32[] index_group 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/GetErrorID.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/GetErrorID.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/GetHoldRegs.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/GetHoldRegs.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/GetInBits.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/GetInBits.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/GetInRegs.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/GetInRegs.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/GetInputBool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/GetInputBool.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/GetInputFloat.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/GetInputFloat.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/GetInputInt.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/GetInputInt.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/GetOutputBool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/GetOutputBool.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/GetOutputFloat.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/GetOutputFloat.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/GetOutputInt.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/GetOutputInt.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/GetPose.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/GetPose.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/GetStartPose.srv: -------------------------------------------------------------------------------- 1 | string traceName 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/InverseKin.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/InverseKin.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/InverseSolution.srv: -------------------------------------------------------------------------------- 1 | string parameter 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/ModbusClose.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/ModbusClose.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/ModbusCreate.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/ModbusCreate.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/ModbusRTUCreate.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/ModbusRTUCreate.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/MovJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/MovJ.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/MovJIO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/MovJIO.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/MovL.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/MovL.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/MovLIO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/MovLIO.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/MoveJog.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/MoveJog.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/Pause.srv: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/PositiveKin.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/PositiveKin.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/PowerOn.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/RelJointMovJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/RelJointMovJ.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/RelMovJTool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/RelMovJTool.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/RelMovJUser.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/RelMovJUser.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/RelMovLTool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/RelMovLTool.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/RelMovLUser.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/RelMovLUser.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/RobotMode.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/RobotMode.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/RunScript.srv: -------------------------------------------------------------------------------- 1 | string projectName 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/ServoJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/ServoJ.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/ServoP.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/ServoP.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/SetBackDistance.srv: -------------------------------------------------------------------------------- 1 | float64 distance 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/SetCoils.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/SetCoils.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/SetCollisionLevel.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/SetCollisionLevel.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/SetHoldRegs.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/SetHoldRegs.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/SetOutputBool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/SetOutputBool.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/SetOutputFloat.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/SetOutputFloat.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/SetOutputInt.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/SetOutputInt.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/SetPayload.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/SetPayload.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/SetPostCollisionMode.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/SetPostCollisionMode.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/SetSafeSkin.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/SetSafeSkin.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/SetSafeWallEnable.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/SetSafeWallEnable.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/SetTool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/SetTool.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/SetTool485.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/SetTool485.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/SetToolMode.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/SetToolMode.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/SetToolPower.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/SetToolPower.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/SetUser.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/SetUser.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/SpeedFactor.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/SpeedFactor.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/StartDrag.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/StartPath.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/StartPath.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/Stop.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/StopDrag.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/StopMoveJog.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/TcpDashboard.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/TcpDashboard.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/Tool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/Tool.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/ToolAI.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/ToolAI.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/ToolDI.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/ToolDI.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/ToolDO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/ToolDO.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/ToolDOInstant.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/ToolDOInstant.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/User.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/User.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/VelJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/VelJ.srv -------------------------------------------------------------------------------- /dobot_v4_bringup/srv/VelL.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/dobot_v4_bringup/srv/VelL.srv -------------------------------------------------------------------------------- /image/.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/.png -------------------------------------------------------------------------------- /image/bringup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/bringup.png -------------------------------------------------------------------------------- /image/checkTcpMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/checkTcpMode.png -------------------------------------------------------------------------------- /image/checkTcpMode_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/checkTcpMode_en.png -------------------------------------------------------------------------------- /image/cr5control.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/cr5control.jpg -------------------------------------------------------------------------------- /image/demov3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/demov3.png -------------------------------------------------------------------------------- /image/excetion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/excetion.png -------------------------------------------------------------------------------- /image/excetion_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/excetion_en.png -------------------------------------------------------------------------------- /image/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/feed.png -------------------------------------------------------------------------------- /image/feed_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/feed_en.png -------------------------------------------------------------------------------- /image/joint_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/joint_controller.png -------------------------------------------------------------------------------- /image/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/main.png -------------------------------------------------------------------------------- /image/main_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/main_en.png -------------------------------------------------------------------------------- /image/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/move.png -------------------------------------------------------------------------------- /image/move_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/move_en.png -------------------------------------------------------------------------------- /image/moveit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/moveit.gif -------------------------------------------------------------------------------- /image/netConnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/netConnect.png -------------------------------------------------------------------------------- /image/netConnect_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/netConnect_en.png -------------------------------------------------------------------------------- /image/robot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/robot.ico -------------------------------------------------------------------------------- /image/robotType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/robotType.png -------------------------------------------------------------------------------- /image/runpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/runpy.png -------------------------------------------------------------------------------- /image/rviz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/rviz.jpg -------------------------------------------------------------------------------- /image/updateIP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/updateIP.png -------------------------------------------------------------------------------- /image/updateIP_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/image/updateIP_en.png -------------------------------------------------------------------------------- /me6_moveit/.setup_assistant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/.setup_assistant -------------------------------------------------------------------------------- /me6_moveit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/CMakeLists.txt -------------------------------------------------------------------------------- /me6_moveit/config/cartesian_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/config/cartesian_limits.yaml -------------------------------------------------------------------------------- /me6_moveit/config/chomp_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/config/chomp_planning.yaml -------------------------------------------------------------------------------- /me6_moveit/config/fake_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/config/fake_controllers.yaml -------------------------------------------------------------------------------- /me6_moveit/config/joint_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/config/joint_limits.yaml -------------------------------------------------------------------------------- /me6_moveit/config/kinematics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/config/kinematics.yaml -------------------------------------------------------------------------------- /me6_moveit/config/me6_robot.srdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/config/me6_robot.srdf -------------------------------------------------------------------------------- /me6_moveit/config/ompl_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/config/ompl_planning.yaml -------------------------------------------------------------------------------- /me6_moveit/config/ros_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/config/ros_controllers.yaml -------------------------------------------------------------------------------- /me6_moveit/config/sensors_3d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/config/sensors_3d.yaml -------------------------------------------------------------------------------- /me6_moveit/launch/default_warehouse_db.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/launch/default_warehouse_db.launch -------------------------------------------------------------------------------- /me6_moveit/launch/demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/launch/demo.launch -------------------------------------------------------------------------------- /me6_moveit/launch/demo_gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/launch/demo_gazebo.launch -------------------------------------------------------------------------------- /me6_moveit/launch/gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/launch/gazebo.launch -------------------------------------------------------------------------------- /me6_moveit/launch/joystick_control.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/launch/joystick_control.launch -------------------------------------------------------------------------------- /me6_moveit/launch/me6_moveit.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/launch/me6_moveit.launch -------------------------------------------------------------------------------- /me6_moveit/launch/move_group.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/launch/move_group.launch -------------------------------------------------------------------------------- /me6_moveit/launch/moveit.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/launch/moveit.rviz -------------------------------------------------------------------------------- /me6_moveit/launch/moveit_rviz.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/launch/moveit_rviz.launch -------------------------------------------------------------------------------- /me6_moveit/launch/planning_context.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/launch/planning_context.launch -------------------------------------------------------------------------------- /me6_moveit/launch/ros_controllers.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/launch/ros_controllers.launch -------------------------------------------------------------------------------- /me6_moveit/launch/run_benchmark_ompl.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/launch/run_benchmark_ompl.launch -------------------------------------------------------------------------------- /me6_moveit/launch/sensor_manager.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/launch/sensor_manager.launch.xml -------------------------------------------------------------------------------- /me6_moveit/launch/setup_assistant.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/launch/setup_assistant.launch -------------------------------------------------------------------------------- /me6_moveit/launch/warehouse.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/launch/warehouse.launch -------------------------------------------------------------------------------- /me6_moveit/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/me6_moveit/package.xml -------------------------------------------------------------------------------- /nova2_moveit/.setup_assistant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/.setup_assistant -------------------------------------------------------------------------------- /nova2_moveit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/CMakeLists.txt -------------------------------------------------------------------------------- /nova2_moveit/config/cartesian_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/config/cartesian_limits.yaml -------------------------------------------------------------------------------- /nova2_moveit/config/chomp_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/config/chomp_planning.yaml -------------------------------------------------------------------------------- /nova2_moveit/config/fake_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/config/fake_controllers.yaml -------------------------------------------------------------------------------- /nova2_moveit/config/joint_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/config/joint_limits.yaml -------------------------------------------------------------------------------- /nova2_moveit/config/kinematics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/config/kinematics.yaml -------------------------------------------------------------------------------- /nova2_moveit/config/nova2_robot.srdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/config/nova2_robot.srdf -------------------------------------------------------------------------------- /nova2_moveit/config/ompl_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/config/ompl_planning.yaml -------------------------------------------------------------------------------- /nova2_moveit/config/ros_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/config/ros_controllers.yaml -------------------------------------------------------------------------------- /nova2_moveit/config/sensors_3d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/config/sensors_3d.yaml -------------------------------------------------------------------------------- /nova2_moveit/launch/demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/launch/demo.launch -------------------------------------------------------------------------------- /nova2_moveit/launch/joystick_control.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/launch/joystick_control.launch -------------------------------------------------------------------------------- /nova2_moveit/launch/move_group.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/launch/move_group.launch -------------------------------------------------------------------------------- /nova2_moveit/launch/moveit.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/launch/moveit.rviz -------------------------------------------------------------------------------- /nova2_moveit/launch/moveit_rviz.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/launch/moveit_rviz.launch -------------------------------------------------------------------------------- /nova2_moveit/launch/nova2_moveit.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/launch/nova2_moveit.launch -------------------------------------------------------------------------------- /nova2_moveit/launch/planning_context.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/launch/planning_context.launch -------------------------------------------------------------------------------- /nova2_moveit/launch/ros_controllers.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/launch/ros_controllers.launch -------------------------------------------------------------------------------- /nova2_moveit/launch/run_benchmark_ompl.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/launch/run_benchmark_ompl.launch -------------------------------------------------------------------------------- /nova2_moveit/launch/sensor_manager.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/launch/sensor_manager.launch.xml -------------------------------------------------------------------------------- /nova2_moveit/launch/setup_assistant.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/launch/setup_assistant.launch -------------------------------------------------------------------------------- /nova2_moveit/launch/warehouse.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/launch/warehouse.launch -------------------------------------------------------------------------------- /nova2_moveit/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova2_moveit/package.xml -------------------------------------------------------------------------------- /nova5_moveit/.setup_assistant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/.setup_assistant -------------------------------------------------------------------------------- /nova5_moveit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/CMakeLists.txt -------------------------------------------------------------------------------- /nova5_moveit/config/cartesian_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/config/cartesian_limits.yaml -------------------------------------------------------------------------------- /nova5_moveit/config/chomp_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/config/chomp_planning.yaml -------------------------------------------------------------------------------- /nova5_moveit/config/fake_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/config/fake_controllers.yaml -------------------------------------------------------------------------------- /nova5_moveit/config/joint_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/config/joint_limits.yaml -------------------------------------------------------------------------------- /nova5_moveit/config/kinematics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/config/kinematics.yaml -------------------------------------------------------------------------------- /nova5_moveit/config/nova5_robot.srdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/config/nova5_robot.srdf -------------------------------------------------------------------------------- /nova5_moveit/config/ompl_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/config/ompl_planning.yaml -------------------------------------------------------------------------------- /nova5_moveit/config/ros_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/config/ros_controllers.yaml -------------------------------------------------------------------------------- /nova5_moveit/config/sensors_3d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/config/sensors_3d.yaml -------------------------------------------------------------------------------- /nova5_moveit/launch/demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/launch/demo.launch -------------------------------------------------------------------------------- /nova5_moveit/launch/joystick_control.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/launch/joystick_control.launch -------------------------------------------------------------------------------- /nova5_moveit/launch/move_group.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/launch/move_group.launch -------------------------------------------------------------------------------- /nova5_moveit/launch/moveit.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/launch/moveit.rviz -------------------------------------------------------------------------------- /nova5_moveit/launch/moveit_rviz.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/launch/moveit_rviz.launch -------------------------------------------------------------------------------- /nova5_moveit/launch/nova5_moveit.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/launch/nova5_moveit.launch -------------------------------------------------------------------------------- /nova5_moveit/launch/planning_context.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/launch/planning_context.launch -------------------------------------------------------------------------------- /nova5_moveit/launch/ros_controllers.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/launch/ros_controllers.launch -------------------------------------------------------------------------------- /nova5_moveit/launch/run_benchmark_ompl.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/launch/run_benchmark_ompl.launch -------------------------------------------------------------------------------- /nova5_moveit/launch/sensor_manager.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/launch/sensor_manager.launch.xml -------------------------------------------------------------------------------- /nova5_moveit/launch/setup_assistant.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/launch/setup_assistant.launch -------------------------------------------------------------------------------- /nova5_moveit/launch/warehouse.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/launch/warehouse.launch -------------------------------------------------------------------------------- /nova5_moveit/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/nova5_moveit/package.xml -------------------------------------------------------------------------------- /rosdemo_v3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/CMakeLists.txt -------------------------------------------------------------------------------- /rosdemo_v3/alarmFile/alarm_controller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/alarmFile/alarm_controller.json -------------------------------------------------------------------------------- /rosdemo_v3/alarmFile/alarm_servo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/alarmFile/alarm_servo.json -------------------------------------------------------------------------------- /rosdemo_v3/include/nlohmann/detail/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/include/nlohmann/detail/hash.hpp -------------------------------------------------------------------------------- /rosdemo_v3/include/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/include/nlohmann/json.hpp -------------------------------------------------------------------------------- /rosdemo_v3/include/nlohmann/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/include/nlohmann/json_fwd.hpp -------------------------------------------------------------------------------- /rosdemo_v3/include/nlohmann/ordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/include/nlohmann/ordered_map.hpp -------------------------------------------------------------------------------- /rosdemo_v3/include/rosDemoCRV3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/include/rosDemoCRV3.h -------------------------------------------------------------------------------- /rosdemo_v3/launch/democr_v3.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/launch/democr_v3.launch -------------------------------------------------------------------------------- /rosdemo_v3/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/package.xml -------------------------------------------------------------------------------- /rosdemo_v3/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/src/main.cpp -------------------------------------------------------------------------------- /rosdemo_v3/src/rosDemoCRV3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/src/rosDemoCRV3.cpp -------------------------------------------------------------------------------- /rosdemo_v3/srv/AI.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/AI.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/AO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/AO.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/AOExecute.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/AOExecute.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/AccJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/AccJ.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/AccL.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/AccL.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/Arc.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/Arc.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/Arch.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/Arch.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/BrakeControl.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/BrakeControl.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/CP.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/CP.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/Circle.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/Circle.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/ClearError.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/ContinueScript.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/Continues.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/DI.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/DI.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/DIGroup.srv: -------------------------------------------------------------------------------- 1 | int32[] args 2 | 3 | --- 4 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/DO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/DO.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/DOExecute.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/DOExecute.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/DOGroup.srv: -------------------------------------------------------------------------------- 1 | int32[] args 2 | 3 | --- 4 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/DigitalOutputs.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/DigitalOutputs.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/DisableRobot.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/EmergencyStop.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/EnableRobot.srv: -------------------------------------------------------------------------------- 1 | float64[] args 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/GetAngle.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/GetCoils.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/GetCoils.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/GetErrorID.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/GetErrorID.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/GetHoldRegs.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/GetHoldRegs.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/GetInBits.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/GetInBits.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/GetInRegs.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/GetInRegs.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/GetPathStartPose.srv: -------------------------------------------------------------------------------- 1 | string traceName 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/GetPose.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/GetPose.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/GetSixForceData.srv: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/GetTerminal485.srv: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/GetTraceStartPose.srv: -------------------------------------------------------------------------------- 1 | string traceName 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/HandleTrajPoints.srv: -------------------------------------------------------------------------------- 1 | string traceName 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/InverseSolution.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/InverseSolution.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/JointMovJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/JointMovJ.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/Jump.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/Jump.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/LimZ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/LimZ.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/LoadSwitch.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/LoadSwitch.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/ModbusClose.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/ModbusClose.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/ModbusCreate.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/ModbusCreate.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/MovJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/MovJ.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/MovJExt.srv: -------------------------------------------------------------------------------- 1 | float64 offset 2 | string[] paramValue 3 | --- 4 | 5 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/MovJIO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/MovJIO.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/MovL.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/MovL.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/MovLIO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/MovLIO.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/MoveJog.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/MoveJog.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/PauseScript.srv: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/PayLoad.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/PayLoad.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/PositiveSolution.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/PositiveSolution.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/PowerOn.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/RelJointMovJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/RelJointMovJ.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/RelMovJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/RelMovJ.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/RelMovJTool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/RelMovJTool.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/RelMovJUser.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/RelMovJUser.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/RelMovL.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/RelMovL.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/RelMovLTool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/RelMovLTool.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/RelMovLUser.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/RelMovLUser.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/ResetRobot.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/RobotMode.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/RobotMode.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/RunScript.srv: -------------------------------------------------------------------------------- 1 | string projectName 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/ServoJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/ServoJ.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/ServoP.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/ServoP.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/SetArmOrientation.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/SetArmOrientation.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/SetCoils.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/SetCoils.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/SetCollideDrag.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/SetCollideDrag.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/SetCollisionLevel.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/SetCollisionLevel.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/SetHoldRegs.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/SetHoldRegs.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/SetObstacleAvoid.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/SetObstacleAvoid.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/SetPayload.srv: -------------------------------------------------------------------------------- 1 | float64 load 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/SetSafeSkin.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/SetSafeSkin.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/SetTerminal485.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/SetTerminal485.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/SetTerminalKeys.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/SetTerminalKeys.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/SpeedFactor.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/SpeedFactor.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/SpeedJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/SpeedJ.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/SpeedL.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/SpeedL.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/StartDrag.srv: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/StartFCTrace.srv: -------------------------------------------------------------------------------- 1 | string trace_name 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/StartPath.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/StartPath.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/StartTrace.srv: -------------------------------------------------------------------------------- 1 | string trace_name 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/StopDrag.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/StopScript.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/StopmoveJog.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/Sync.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/SyncAll.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/TCPSpeed.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/TCPSpeed.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/TCPSpeedEnd.srv: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v3/srv/Tool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/Tool.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/ToolAI.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/ToolAI.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/ToolDI.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/ToolDI.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/ToolDO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/ToolDO.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/ToolDOExecute.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/ToolDOExecute.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/User.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/User.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/Wait.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v3/srv/Wait.srv -------------------------------------------------------------------------------- /rosdemo_v3/srv/pause.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/CMakeLists.txt -------------------------------------------------------------------------------- /rosdemo_v4/alarmFile/alarm_controller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/alarmFile/alarm_controller.json -------------------------------------------------------------------------------- /rosdemo_v4/alarmFile/alarm_servo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/alarmFile/alarm_servo.json -------------------------------------------------------------------------------- /rosdemo_v4/include/nlohmann/detail/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/include/nlohmann/detail/hash.hpp -------------------------------------------------------------------------------- /rosdemo_v4/include/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/include/nlohmann/json.hpp -------------------------------------------------------------------------------- /rosdemo_v4/include/nlohmann/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/include/nlohmann/json_fwd.hpp -------------------------------------------------------------------------------- /rosdemo_v4/include/nlohmann/ordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/include/nlohmann/ordered_map.hpp -------------------------------------------------------------------------------- /rosdemo_v4/include/rosDemoCRV4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/include/rosDemoCRV4.h -------------------------------------------------------------------------------- /rosdemo_v4/launch/democr_v4.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/launch/democr_v4.launch -------------------------------------------------------------------------------- /rosdemo_v4/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/package.xml -------------------------------------------------------------------------------- /rosdemo_v4/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/src/main.cpp -------------------------------------------------------------------------------- /rosdemo_v4/src/rosDemoCRV4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/src/rosDemoCRV4.cpp -------------------------------------------------------------------------------- /rosdemo_v4/srv/AI.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/AI.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/AO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/AO.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/AOInstant.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/AOInstant.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/AccJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/AccJ.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/AccL.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/AccL.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/Arc.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/Arc.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/BrakeControl.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/BrakeControl.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/CP.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/CP.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/CalcTool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/CalcTool.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/CalcUser.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/CalcUser.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/Circle.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/Circle.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/ClearError.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v4/srv/Continue.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v4/srv/DI.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/DI.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/DIGroup.srv: -------------------------------------------------------------------------------- 1 | int32[] args 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v4/srv/DO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/DO.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/DOGroup.srv: -------------------------------------------------------------------------------- 1 | int32[] args 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v4/srv/DOInstant.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/DOInstant.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/DisableRobot.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v4/srv/DragSensivity.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/DragSensivity.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/EmergencyStop.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/EmergencyStop.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/EnableRobot.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v4/srv/EnableSafeSkin.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/EnableSafeSkin.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/GetAO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/GetAO.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/GetAngle.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v4/srv/GetCoils.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/GetCoils.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/GetCurrentCommandId.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v4/srv/GetDO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/GetDO.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/GetDOGroup.srv: -------------------------------------------------------------------------------- 1 | int32[] index_group 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v4/srv/GetErrorID.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/GetErrorID.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/GetHoldRegs.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/GetHoldRegs.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/GetInBits.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/GetInBits.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/GetInRegs.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/GetInRegs.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/GetInputBool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/GetInputBool.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/GetInputFloat.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/GetInputFloat.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/GetInputInt.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/GetInputInt.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/GetOutputBool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/GetOutputBool.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/GetOutputFloat.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/GetOutputFloat.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/GetOutputInt.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/GetOutputInt.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/GetPose.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/GetPose.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/GetStartPose.srv: -------------------------------------------------------------------------------- 1 | string traceName 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v4/srv/InverseKin.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/InverseKin.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/InverseSolution.srv: -------------------------------------------------------------------------------- 1 | string parameter 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v4/srv/ModbusClose.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/ModbusClose.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/ModbusCreate.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/ModbusCreate.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/ModbusRTUCreate.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/ModbusRTUCreate.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/MovJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/MovJ.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/MovJIO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/MovJIO.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/MovL.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/MovL.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/MovLIO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/MovLIO.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/MoveJog.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/MoveJog.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/Pause.srv: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v4/srv/PositiveKin.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/PositiveKin.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/PowerOn.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v4/srv/RelJointMovJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/RelJointMovJ.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/RelMovJTool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/RelMovJTool.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/RelMovJUser.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/RelMovJUser.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/RelMovLTool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/RelMovLTool.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/RelMovLUser.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/RelMovLUser.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/RobotMode.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/RobotMode.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/RunScript.srv: -------------------------------------------------------------------------------- 1 | string projectName 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v4/srv/ServoJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/ServoJ.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/ServoP.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/ServoP.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/SetBackDistance.srv: -------------------------------------------------------------------------------- 1 | float64 distance 2 | --- 3 | int32 res -------------------------------------------------------------------------------- /rosdemo_v4/srv/SetCoils.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/SetCoils.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/SetCollisionLevel.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/SetCollisionLevel.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/SetHoldRegs.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/SetHoldRegs.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/SetOutputBool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/SetOutputBool.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/SetOutputFloat.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/SetOutputFloat.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/SetOutputInt.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/SetOutputInt.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/SetPayload.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/SetPayload.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/SetPostCollisionMode.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/SetPostCollisionMode.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/SetSafeSkin.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/SetSafeSkin.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/SetSafeWallEnable.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/SetSafeWallEnable.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/SetTool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/SetTool.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/SetTool485.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/SetTool485.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/SetToolMode.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/SetToolMode.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/SetToolPower.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/SetToolPower.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/SetUser.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/SetUser.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/SpeedFactor.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/SpeedFactor.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/StartDrag.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v4/srv/StartPath.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/StartPath.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/Stop.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v4/srv/StopDrag.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v4/srv/StopMoveJog.srv: -------------------------------------------------------------------------------- 1 | --- 2 | int32 res -------------------------------------------------------------------------------- /rosdemo_v4/srv/TcpDashboard.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/TcpDashboard.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/Tool.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/Tool.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/ToolAI.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/ToolAI.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/ToolDI.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/ToolDI.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/ToolDO.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/ToolDO.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/ToolDOInstant.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/ToolDOInstant.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/User.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/User.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/VelJ.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/VelJ.srv -------------------------------------------------------------------------------- /rosdemo_v4/srv/VelL.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rosdemo_v4/srv/VelL.srv -------------------------------------------------------------------------------- /rviz_dobot_control/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rviz_dobot_control/CMakeLists.txt -------------------------------------------------------------------------------- /rviz_dobot_control/include/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rviz_dobot_control/include/nlohmann/json.hpp -------------------------------------------------------------------------------- /rviz_dobot_control/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rviz_dobot_control/package.xml -------------------------------------------------------------------------------- /rviz_dobot_control/plugin_description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rviz_dobot_control/plugin_description.xml -------------------------------------------------------------------------------- /rviz_dobot_control/robot_type.json: -------------------------------------------------------------------------------- 1 | { 2 | "robotType": "v3" 3 | } -------------------------------------------------------------------------------- /rviz_dobot_control/src/rviz_dobot_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rviz_dobot_control/src/rviz_dobot_control.cpp -------------------------------------------------------------------------------- /rviz_dobot_control/src/rviz_dobot_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rviz_dobot_control/src/rviz_dobot_control.h -------------------------------------------------------------------------------- /rviz_dobot_control/src/ui_control_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dobot-Arm/TCP-IP-ROS-6AXis/HEAD/rviz_dobot_control/src/ui_control_menu.h --------------------------------------------------------------------------------