Skip to content

Commit 17de3f1

Browse files
authored
Add files via upload
1 parent e0620b2 commit 17de3f1

File tree

13 files changed

+1255
-0
lines changed

13 files changed

+1255
-0
lines changed

differential_drive/CMakeLists.txt

Lines changed: 199 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,199 @@
1+
cmake_minimum_required(VERSION 2.8.3)
2+
project(differential_drive)
3+
4+
## Compile as C++11, supported in ROS Kinetic and newer
5+
# add_compile_options(-std=c++11)
6+
7+
## Find catkin macros and libraries
8+
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
9+
## is used, also find other catkin packages
10+
find_package(catkin REQUIRED COMPONENTS
11+
rospy
12+
std_msgs
13+
tf
14+
)
15+
16+
## System dependencies are found with CMake's conventions
17+
# find_package(Boost REQUIRED COMPONENTS system)
18+
19+
20+
## Uncomment this if the package has a setup.py. This macro ensures
21+
## modules and global scripts declared therein get installed
22+
## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html
23+
# catkin_python_setup()
24+
25+
################################################
26+
## Declare ROS messages, services and actions ##
27+
################################################
28+
29+
## To declare and build messages, services or actions from within this
30+
## package, follow these steps:
31+
## * Let MSG_DEP_SET be the set of packages whose message types you use in
32+
## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...).
33+
## * In the file package.xml:
34+
## * add a build_depend tag for "message_generation"
35+
## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET
36+
## * If MSG_DEP_SET isn't empty the following dependency has been pulled in
37+
## but can be declared for certainty nonetheless:
38+
## * add a exec_depend tag for "message_runtime"
39+
## * In this file (CMakeLists.txt):
40+
## * add "message_generation" and every package in MSG_DEP_SET to
41+
## find_package(catkin REQUIRED COMPONENTS ...)
42+
## * add "message_runtime" and every package in MSG_DEP_SET to
43+
## catkin_package(CATKIN_DEPENDS ...)
44+
## * uncomment the add_*_files sections below as needed
45+
## and list every .msg/.srv/.action file to be processed
46+
## * uncomment the generate_messages entry below
47+
## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...)
48+
49+
## Generate messages in the 'msg' folder
50+
# add_message_files(
51+
# FILES
52+
# Message1.msg
53+
# Message2.msg
54+
# )
55+
56+
## Generate services in the 'srv' folder
57+
# add_service_files(
58+
# FILES
59+
# Service1.srv
60+
# Service2.srv
61+
# )
62+
63+
## Generate actions in the 'action' folder
64+
# add_action_files(
65+
# FILES
66+
# Action1.action
67+
# Action2.action
68+
# )
69+
70+
## Generate added messages and services with any dependencies listed here
71+
# generate_messages(
72+
# DEPENDENCIES
73+
# std_msgs
74+
# )
75+
76+
################################################
77+
## Declare ROS dynamic reconfigure parameters ##
78+
################################################
79+
80+
## To declare and build dynamic reconfigure parameters within this
81+
## package, follow these steps:
82+
## * In the file package.xml:
83+
## * add a build_depend and a exec_depend tag for "dynamic_reconfigure"
84+
## * In this file (CMakeLists.txt):
85+
## * add "dynamic_reconfigure" to
86+
## find_package(catkin REQUIRED COMPONENTS ...)
87+
## * uncomment the "generate_dynamic_reconfigure_options" section below
88+
## and list every .cfg file to be processed
89+
90+
## Generate dynamic reconfigure parameters in the 'cfg' folder
91+
# generate_dynamic_reconfigure_options(
92+
# cfg/DynReconf1.cfg
93+
# cfg/DynReconf2.cfg
94+
# )
95+
96+
###################################
97+
## catkin specific configuration ##
98+
###################################
99+
## The catkin_package macro generates cmake config files for your package
100+
## Declare things to be passed to dependent projects
101+
## INCLUDE_DIRS: uncomment this if your package contains header files
102+
## LIBRARIES: libraries you create in this project that dependent projects also need
103+
## CATKIN_DEPENDS: catkin_packages dependent projects also need
104+
## DEPENDS: system dependencies of this project that dependent projects also need
105+
catkin_package(
106+
# INCLUDE_DIRS include
107+
# LIBRARIES differential_drive
108+
# CATKIN_DEPENDS rospy std_msgs tf
109+
# DEPENDS system_lib
110+
)
111+
112+
###########
113+
## Build ##
114+
###########
115+
116+
## Specify additional locations of header files
117+
## Your package locations should be listed before other locations
118+
include_directories(
119+
# include
120+
${catkin_INCLUDE_DIRS}
121+
)
122+
123+
## Declare a C++ library
124+
# add_library(${PROJECT_NAME}
125+
# src/${PROJECT_NAME}/differential_drive.cpp
126+
# )
127+
128+
## Add cmake target dependencies of the library
129+
## as an example, code may need to be generated before libraries
130+
## either from message generation or dynamic reconfigure
131+
# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
132+
133+
## Declare a C++ executable
134+
## With catkin_make all packages are built within a single CMake context
135+
## The recommended prefix ensures that target names across packages don't collide
136+
# add_executable(${PROJECT_NAME}_node src/differential_drive_node.cpp)
137+
138+
## Rename C++ executable without prefix
139+
## The above recommended prefix causes long target names, the following renames the
140+
## target back to the shorter version for ease of user use
141+
## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node"
142+
# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "")
143+
144+
## Add cmake target dependencies of the executable
145+
## same as for the library above
146+
# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
147+
148+
## Specify libraries to link a library or executable target against
149+
# target_link_libraries(${PROJECT_NAME}_node
150+
# ${catkin_LIBRARIES}
151+
# )
152+
153+
#############
154+
## Install ##
155+
#############
156+
157+
# all install targets should use catkin DESTINATION variables
158+
# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html
159+
160+
## Mark executable scripts (Python etc.) for installation
161+
## in contrast to setup.py, you can choose the destination
162+
# install(PROGRAMS
163+
# scripts/my_python_script
164+
# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
165+
# )
166+
167+
## Mark executables and/or libraries for installation
168+
# install(TARGETS ${PROJECT_NAME} ${PROJECT_NAME}_node
169+
# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
170+
# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
171+
# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
172+
# )
173+
174+
## Mark cpp header files for installation
175+
# install(DIRECTORY include/${PROJECT_NAME}/
176+
# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
177+
# FILES_MATCHING PATTERN "*.h"
178+
# PATTERN ".svn" EXCLUDE
179+
# )
180+
181+
## Mark other files for installation (e.g. launch and bag files, etc.)
182+
# install(FILES
183+
# # myfile1
184+
# # myfile2
185+
# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
186+
# )
187+
188+
#############
189+
## Testing ##
190+
#############
191+
192+
## Add gtest based cpp test target and link libraries
193+
# catkin_add_gtest(${PROJECT_NAME}-test test/test_differential_drive.cpp)
194+
# if(TARGET ${PROJECT_NAME}-test)
195+
# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME})
196+
# endif()
197+
198+
## Add folders to be run by python nosetests
199+
# catkin_add_nosetests(test)
1.03 KB
Loading
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<launch>
2+
3+
4+
5+
<!-- simulate motor-->
6+
7+
<node pkg="differential_drive" type="wheel_loopback.py" name="lwheel_sim">
8+
<remap from="wheel" to="lwheel"/>
9+
<remap from="motor" to="lmotor_cmd"/>
10+
11+
</node>
12+
<node pkg="differential_drive" type="wheel_loopback.py" name="rwheel_sim">
13+
<remap from="wheel" to="rwheel"/>
14+
<remap from="motor" to="rmotor_cmd"/>
15+
16+
</node>
17+
18+
19+
</launch>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<launch>
2+
3+
4+
5+
<node pkg="robot_pose_ekf" type="robot_pose_ekf" name="robot_pose_ekf" output="screen">
6+
<param name="output_frame" value="odom"/>
7+
<param name="freq" value="30.0"/>
8+
<param name="sensor_timeout" value="2.0"/>
9+
<param name="odom_used" value="true"/>
10+
<param name="imu_used" value="true"/>
11+
<param name="vo_used" value="false"/>
12+
<param name="debug" value="false"/>
13+
<param name="self_diagnose" value="false"/>
14+
<remap from="imu_data" to="IMU_data"/>
15+
</node>
16+
17+
18+
19+
</launch>
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
<launch>
2+
3+
4+
5+
<!-- odometry-ish-->
6+
<param name="~base_frame_id" value="base_link"/>
7+
<param name="~odom_frame_id" value="odom"/>
8+
<param name="encoder_min" value="-32768"/>
9+
<param name="encoder_max" value="32768"/>
10+
<param name="ticks_meter" value="2100" />
11+
<param name="~base_width" value="0.18" />
12+
13+
<node pkg="differential_drive" type="diff_tf.py" name="diff_drive" output="screen">
14+
<!-- <remap from="/odom" to="/wheelodom"/> -->
15+
</node>
16+
17+
18+
<!--
19+
<node pkg="differential_drive" type="pid_velocity.py" name="lpid_velocity">
20+
<remap from="wheel" to="lwheel"/>
21+
<remap from="motor_cmd" to="lmotor_cmd"/>
22+
<remap from="wheel_vtarget" to="lwheel_vtarget"/>
23+
<remap from="wheel_vel" to="lwheel_vel"/>
24+
<rosparam param="Kp">500</rosparam>
25+
<rosparam param="Ki">25</rosparam>
26+
<rosparam param="Kd">0</rosparam>
27+
<rosparam param="out_min">-600</rosparam>
28+
<rosparam param="out_max">600</rosparam>
29+
<rosparam param="rate">100</rosparam>
30+
<rosparam param="timeout_ticks">20</rosparam>
31+
<rosparam param="rolling_pts">5</rosparam>
32+
</node>
33+
<node pkg="differential_drive" type="pid_velocity.py" name="rpid_velocity">
34+
<remap from="wheel" to="rwheel"/>
35+
<remap from="motor_cmd" to="rmotor_cmd"/>
36+
<remap from="wheel_vtarget" to="rwheel_vtarget"/>
37+
<remap from="wheel_vel" to="rwheel_vel"/>
38+
<rosparam param="Kp">500</rosparam>
39+
<rosparam param="Ki">25</rosparam>
40+
<rosparam param="Kd">0</rosparam>
41+
<rosparam param="out_min">-600</rosparam>
42+
<rosparam param="out_max">600</rosparam>
43+
<rosparam param="rate">100</rosparam>
44+
<rosparam param="timeout_ticks">20</rosparam>
45+
<rosparam param="rolling_pts">5</rosparam>
46+
</node>
47+
48+
<node pkg="differential_drive" type="twist_to_motors.py" name="twist_to_motors" output="screen">
49+
<rosparam param="base_width">0.22</rosparam>
50+
</node>
51+
52+
<node pkg="differential_drive" type="virtual_joystick.py" name="virtual_joystick" output="screen"/>
53+
54+
-->
55+
56+
57+
58+
59+
60+
61+
62+
63+
64+
</launch>

differential_drive/manifest.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<package>
2+
<description brief="differential_drive">
3+
4+
Provides some basic tools for interfacing a differential-drive
5+
robot with the ROS navigation stack. The intent is to make this
6+
independent of specific robot implementation.
7+
8+
</description>
9+
<author>Jon Stephan</author>
10+
<license>GNU GPL3</license>
11+
<review status="unreviewed" notes=""/>
12+
<url>http://ros.org/wiki/differential_drive</url>
13+
<depend package="rospy"/>
14+
<depend package="std_msgs"/>
15+
<depend package="tf"/>
16+
17+
</package>
18+
19+

differential_drive/package.xml

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<?xml version="1.0"?>
2+
<package format="2">
3+
<name>differential_drive</name>
4+
<version>0.0.0</version>
5+
<description>The differential_drive package</description>
6+
7+
<!-- One maintainer tag required, multiple allowed, one person per tag -->
8+
<!-- Example: -->
9+
<!-- <maintainer email="[email protected]">Jane Doe</maintainer> -->
10+
<maintainer email="[email protected]">imesh</maintainer>
11+
12+
13+
<!-- One license tag required, multiple allowed, one license per tag -->
14+
<!-- Commonly used license strings: -->
15+
<!-- BSD, MIT, Boost Software License, GPLv2, GPLv3, LGPLv2.1, LGPLv3 -->
16+
<license>TODO</license>
17+
18+
19+
<!-- Url tags are optional, but multiple are allowed, one per tag -->
20+
<!-- Optional attribute type can be: website, bugtracker, or repository -->
21+
<!-- Example: -->
22+
<!-- <url type="website">http://wiki.ros.org/differential_drive</url> -->
23+
24+
25+
<!-- Author tags are optional, multiple are allowed, one per tag -->
26+
<!-- Authors do not have to be maintainers, but could be -->
27+
<!-- Example: -->
28+
<!-- <author email="[email protected]">Jane Doe</author> -->
29+
30+
31+
<!-- The *depend tags are used to specify dependencies -->
32+
<!-- Dependencies can be catkin packages or system dependencies -->
33+
<!-- Examples: -->
34+
<!-- Use depend as a shortcut for packages that are both build and exec dependencies -->
35+
<!-- <depend>roscpp</depend> -->
36+
<!-- Note that this is equivalent to the following: -->
37+
<!-- <build_depend>roscpp</build_depend> -->
38+
<!-- <exec_depend>roscpp</exec_depend> -->
39+
<!-- Use build_depend for packages you need at compile time: -->
40+
<!-- <build_depend>message_generation</build_depend> -->
41+
<!-- Use build_export_depend for packages you need in order to build against this package: -->
42+
<!-- <build_export_depend>message_generation</build_export_depend> -->
43+
<!-- Use buildtool_depend for build tool packages: -->
44+
<!-- <buildtool_depend>catkin</buildtool_depend> -->
45+
<!-- Use exec_depend for packages you need at runtime: -->
46+
<!-- <exec_depend>message_runtime</exec_depend> -->
47+
<!-- Use test_depend for packages you need only for testing: -->
48+
<!-- <test_depend>gtest</test_depend> -->
49+
<!-- Use doc_depend for packages you need only for building documentation: -->
50+
<!-- <doc_depend>doxygen</doc_depend> -->
51+
<buildtool_depend>catkin</buildtool_depend>
52+
<build_depend>rospy</build_depend>
53+
<build_depend>std_msgs</build_depend>
54+
<build_depend>tf</build_depend>
55+
<build_export_depend>rospy</build_export_depend>
56+
<build_export_depend>std_msgs</build_export_depend>
57+
<build_export_depend>tf</build_export_depend>
58+
<exec_depend>rospy</exec_depend>
59+
<exec_depend>std_msgs</exec_depend>
60+
<exec_depend>tf</exec_depend>
61+
62+
63+
<!-- The export tag contains other, unspecified, tags -->
64+
<export>
65+
<!-- Other tools can request additional information be placed here -->
66+
67+
</export>
68+
</package>

0 commit comments

Comments
 (0)