-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'noetic' of github.com:elephantrobotics/mycobot_ros into…
… cobotx_b450
- Loading branch information
Showing
46 changed files
with
4,394 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<launch> | ||
<!-- Select connecting device and serial port ,选择连接设备及串口--> | ||
<arg name="port" default="/dev/ttyUSB0" /> | ||
<arg name="baud" default="115200" /> | ||
|
||
<arg name="model" default="$(find mycobot_description)/urdf/mycobot/mycobot_with_pump.urdf"/> | ||
<arg name="rvizconfig" default="$(find mycobot_280)/config/mycobot.rviz" /> | ||
<arg name="gui" default="false" /> | ||
|
||
<param name="robot_description" command="$(find xacro)/xacro --inorder $(arg model)" /> | ||
|
||
<!-- Combinejoin values to TF ,将值合并到TF--> | ||
<node name="robot_state_publisher" pkg="robot_state_publisher" type="robot_state_publisher" /> | ||
<!-- Show in Rviz ,显示在Rviz--> | ||
<node name="rviz" pkg="rviz" type="rviz" args="-d $(arg rvizconfig)" required="true" /> | ||
|
||
<include file="$(find mycobot_communication)/launch/communication_service.launch"> | ||
<arg name="port" value="$(arg port)" /> | ||
<arg name="baud" value="$(arg baud)" /> | ||
</include> | ||
<node name="real_listener" pkg="mycobot_280" type="listen_real.py" /> | ||
<node name="simple_gui" pkg="mycobot_280" type="simple_gui.py" /> | ||
</launch> |
25 changes: 25 additions & 0 deletions
25
mycobot_280/mycobot_280/launch/slider_control_camera_flange.launch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<launch> | ||
<!-- <arg name="port" default="/dev/ttyUSB0" /> | ||
<arg name="baud" default="115200" /> --> | ||
<!-- Load file model ,加载文件模型--> | ||
<arg name="model" default="$(find mycobot_description)/urdf/mycobot/mycobot_with_camera_flange.urdf"/> | ||
|
||
<arg name="rvizconfig" default="$(find mycobot_280)/config/mycobot.rviz" /> | ||
<arg name="gui" default="true" /> | ||
|
||
<param name="robot_description" command="$(find xacro)/xacro --inorder $(arg model)" /> | ||
|
||
<!-- Combinejoin values to TF,将值合并到TF --> | ||
<node name="robot_state_publisher" pkg="robot_state_publisher" type="robot_state_publisher" /> | ||
<node name="joint_state_publisher_gui" pkg="joint_state_publisher_gui" type="joint_state_publisher_gui"> | ||
<!-- <param name="use_gui" value="$(arg gui)" /> --> | ||
<!-- <rosparam param="source_list" subst_value="true">["joint_states"]</rosparam> --> | ||
</node> | ||
<!-- Open control script --> | ||
<!-- <node name="control_slider" pkg="mycobot_280" type="slider_control.py"> | ||
<param name="port" type="string" value="$(arg port)" /> | ||
<param name="baud" type="int" value="$(arg baud)" /> | ||
</node> --> | ||
<!-- Show in Rviz ,显示在Rviz--> | ||
<node name="rviz" pkg="rviz" type="rviz" args="-d $(arg rvizconfig)" required="true" /> | ||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<launch> | ||
<!-- <arg name="port" default="/dev/ttyUSB0" /> | ||
<arg name="baud" default="115200" /> --> | ||
<!-- Load file model ,加载文件模型--> | ||
<arg name="model" default="$(find mycobot_description)/urdf/mycobot/mycobot_with_pump.urdf"/> | ||
<arg name="rvizconfig" default="$(find mycobot_280)/config/mycobot.rviz" /> | ||
<arg name="gui" default="true" /> | ||
|
||
<param name="robot_description" command="$(find xacro)/xacro --inorder $(arg model)" /> | ||
|
||
<!-- Combinejoin values to TF,将值合并到TF --> | ||
<node name="robot_state_publisher" pkg="robot_state_publisher" type="robot_state_publisher" /> | ||
<node name="joint_state_publisher_gui" pkg="joint_state_publisher_gui" type="joint_state_publisher_gui"> | ||
<!-- <param name="use_gui" value="$(arg gui)" /> --> | ||
<!-- <rosparam param="source_list" subst_value="true">["joint_states"]</rosparam> --> | ||
</node> | ||
<!-- Open control script --> | ||
<!-- <node name="control_slider" pkg="mycobot_280" type="slider_control.py"> | ||
<param name="port" type="string" value="$(arg port)" /> | ||
<param name="baud" type="int" value="$(arg baud)" /> | ||
</node> --> | ||
<!-- Show in Rviz ,显示在Rviz--> | ||
<node name="rviz" pkg="rviz" type="rviz" args="-d $(arg rvizconfig)" required="true" /> | ||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
mycobot_280/mycobot_280/launch/teleop_keyboard_pump.launch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<launch> | ||
<!-- Select connecting device and serial port ,选择连接设备及串口--> | ||
<arg name="port" default="/dev/ttyUSB0" /> | ||
<arg name="baud" default="115200" /> | ||
|
||
<arg name="model" default="$(find mycobot_description)/urdf/mycobot/mycobot_with_pump.urdf"/> | ||
<arg name="rvizconfig" default="$(find mycobot_280)/config/mycobot.rviz" /> | ||
<arg name="gui" default="false" /> | ||
|
||
<param name="robot_description" command="$(find xacro)/xacro --inorder $(arg model)" /> | ||
|
||
<!-- Combinejoin values to TF ,将值合并到TF--> | ||
<node name="robot_state_publisher" pkg="robot_state_publisher" type="robot_state_publisher" /> | ||
<!-- Show in Rviz ,显示在Rviz--> | ||
<node name="rviz" pkg="rviz" type="rviz" args="-d $(arg rvizconfig)" required="true" /> | ||
|
||
<include file="$(find mycobot_communication)/launch/communication_service.launch"> | ||
<arg name="port" value="$(arg port)" /> | ||
<arg name="baud" value="$(arg baud)" /> | ||
</include> | ||
<!-- listen and pub the real angles ,监听并发布真实角度--> | ||
<node name="real_listener" pkg="mycobot_280" type="listen_real.py" /> | ||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<launch> | ||
<!-- <arg name="port" default="/dev/ttyUSB0" /> | ||
<arg name="baud" default="115200" /> --> | ||
<!-- Load file model ,加载文件模型--> | ||
<arg name="model" default="$(find mycobot_description)/urdf/mycobot/mycobot_with_camera_flange.urdf"/> | ||
|
||
<arg name="rvizconfig" default="$(find mycobot_280)/config/mycobot.rviz" /> | ||
<arg name="gui" default="true" /> | ||
|
||
<param name="robot_description" command="$(find xacro)/xacro --inorder $(arg model)" /> | ||
|
||
<!-- Combinejoin values to TF,将值合并到TF --> | ||
<node name="robot_state_publisher" pkg="robot_state_publisher" type="robot_state_publisher" /> | ||
<node name="joint_state_publisher_gui" pkg="joint_state_publisher_gui" type="joint_state_publisher_gui"> | ||
<!-- <param name="use_gui" value="$(arg gui)" /> --> | ||
<!-- <rosparam param="source_list" subst_value="true">["joint_states"]</rosparam> --> | ||
</node> | ||
<!-- Open control script --> | ||
<!-- <node name="control_slider" pkg="mycobot_280" type="slider_control.py"> | ||
<param name="port" type="string" value="$(arg port)" /> | ||
<param name="baud" type="int" value="$(arg baud)" /> | ||
</node> --> | ||
<!-- Show in Rviz ,显示在Rviz--> | ||
<node name="rviz" pkg="rviz" type="rviz" args="-d $(arg rvizconfig)" required="true" /> | ||
</launch> |
25 changes: 25 additions & 0 deletions
25
mycobot_280/mycobot_280/launch/test_camera_flange_pump.launch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<launch> | ||
<!-- <arg name="port" default="/dev/ttyUSB0" /> | ||
<arg name="baud" default="115200" /> --> | ||
<!-- Load file model ,加载文件模型--> | ||
<arg name="model" default="$(find mycobot_description)/urdf/mycobot/mycobot_with_camera_flange_pump.urdf"/> | ||
|
||
<arg name="rvizconfig" default="$(find mycobot_280)/config/mycobot.rviz" /> | ||
<arg name="gui" default="true" /> | ||
|
||
<param name="robot_description" command="$(find xacro)/xacro --inorder $(arg model)" /> | ||
|
||
<!-- Combinejoin values to TF,将值合并到TF --> | ||
<node name="robot_state_publisher" pkg="robot_state_publisher" type="robot_state_publisher" /> | ||
<node name="joint_state_publisher_gui" pkg="joint_state_publisher_gui" type="joint_state_publisher_gui"> | ||
<!-- <param name="use_gui" value="$(arg gui)" /> --> | ||
<!-- <rosparam param="source_list" subst_value="true">["joint_states"]</rosparam> --> | ||
</node> | ||
<!-- Open control script --> | ||
<!-- <node name="control_slider" pkg="mycobot_280" type="slider_control.py"> | ||
<param name="port" type="string" value="$(arg port)" /> | ||
<param name="baud" type="int" value="$(arg baud)" /> | ||
</node> --> | ||
<!-- Show in Rviz ,显示在Rviz--> | ||
<node name="rviz" pkg="rviz" type="rviz" args="-d $(arg rvizconfig)" required="true" /> | ||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<launch> | ||
<arg name="model" default="$(find mycobot_description)/urdf/mycobot/mycobot_with_gripper_parallel.urdf"/> | ||
<arg name="rvizconfig" default="$(find mycobot_280)/config/mycobot.rviz" /> | ||
<arg name="gui" default="true" /> | ||
|
||
<param name="robot_description" command="$(find xacro)/xacro --inorder $(arg model)" /> | ||
|
||
<!-- Combinejoin values to TF --> | ||
<node name="robot_state_publisher" pkg="robot_state_publisher" type="robot_state_publisher" /> | ||
<node name="joint_state_publisher" pkg="joint_state_publisher" type="joint_state_publisher"> | ||
<param name="use_gui" value="$(arg gui)" /> | ||
<!-- <rosparam param="source_list" subst_value="true">["joint_states"]</rosparam> --> | ||
</node> | ||
<!-- Show in Rviz ,显示在Rviz--> | ||
<node name="rviz" pkg="rviz" type="rviz" args="-d $(arg rvizconfig)" required="true" /> | ||
</launch> |
Oops, something went wrong.