-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from OneNightROBOCON/dev
Dev
- Loading branch information
Showing
4 changed files
with
45 additions
and
37 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
obstacle_range: 3.0 | ||
raytrace_range: 3.5 | ||
obstacle_range: 2.0 | ||
raytrace_range: 3.0 | ||
|
||
footprint: [[-0.105, -0.105], [-0.105, 0.105], [0.041, 0.105], [0.041, -0.105]] | ||
#robot_radius: 0.105 | ||
#footprint: [[-0.105, -0.105], [-0.105, 0.105], [0.041, 0.105], [0.041, -0.105]] | ||
robot_radius: 0.1 | ||
|
||
inflation_radius: 1.0 | ||
inflation_radius: 0.8 | ||
cost_scaling_factor: 3.0 | ||
|
||
map_type: costmap | ||
observation_sources: scan | ||
scan: {sensor_frame: base_scan, data_type: LaserScan, topic: scan, marking: true, clearing: true} | ||
scan: {data_type: LaserScan, topic: scan, marking: true, clearing: true} |
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 |
---|---|---|
@@ -1,37 +1,27 @@ | ||
<launch> | ||
<!-- reamp topic name --> | ||
<remap from="/Rulo/cmd_vel" to="/cmd_vel"/> | ||
|
||
<!-- set manual --> | ||
<node pkg="rostopic" type="rostopic" name="manual_set" args="pub /mobile_base/command/mode std_msgs/String 'manual'" output="screen"/> | ||
<arg name="player_name" default="NoName"/> | ||
<arg name="side" default="b"/> | ||
<arg name="ip" default="http://127.0.0.1:5000"/> | ||
|
||
<!-- camera --> | ||
<!-- realsense --> | ||
<include file="$(find realsense_camera)/launch/r200_nodelet_rgbd.launch" /> | ||
<!-- usb camera --> | ||
<!-- | ||
<node pkg="uvc_camera" type="uvc_camera_node" name="uvc_camera_node"/> | ||
--> | ||
<!-- turtlebot bringup --> | ||
<include file="$(find turtlebot3_bringup)/launch/turtlebot3_robot.launch" /> | ||
|
||
<!-- Lidar --> | ||
<!-- Start Lidar --> | ||
<include file="$(find navi_param)/lg_lidar/laser.launch" /> | ||
|
||
<!-- Start TF publisher --> | ||
<include file="$(find navi_param)/lg_lidar/tf_laser.launch" /> | ||
<!-- usb camera --> | ||
<node pkg="uvc_camera" type="uvc_camera_node" name="uvc_camera_node"/> | ||
|
||
<!-- ar reader --> | ||
<node pkg="ros_aruco" type="ros_aruco" name="ros_aruco" output="screen"> | ||
<remap from="image_raw" to="/camera/rgb/image_raw"/> | ||
<param name="camera_param_path" value="$(find ros_aruco)/data/ost.yaml" type="str"/> | ||
<param name="debug_view" value="false" type="bool"/> | ||
</node> | ||
<node pkg="aruco_ros" type="marker_publisher" name="aruco_marker_publisher"> | ||
<param name="use_camera_info" value="False"/> | ||
<remap from="/image" to="image_raw" /> | ||
<remap from="/aruco_marker_publisher/markers" to="target_id" /> | ||
</node> | ||
|
||
<!-- send target ID to judge server --> | ||
<node pkg="burger_war" type="sendIdToJudge.py" name="send_id_to_judge" output="screen"> | ||
<param name="judge_url" value="http://127.0.0.1:5000" /> | ||
<param name="player_name" value="roborobo" /> | ||
<param name="side" value="r" /> | ||
</node> | ||
</launch> | ||
<node pkg="burger_war" type="sendIdToJudge.py" name="send_id_to_judge" output="screen"> | ||
<param name="judge_url" value="$(arg ip)" /> | ||
<param name="player_name" value="$(arg player_name)" /> | ||
<param name="side" value="$(arg side)" /> | ||
</node> | ||
|
||
</launch> |