├── .gitignore ├── README.md ├── opencv_example ├── Makefile ├── README.md └── publish_cv_cam.cpp ├── ros1_actions ├── CMakeLists.txt ├── DoDishes.action ├── Makefile ├── README.md ├── actionclient.cpp └── actionserver.cpp ├── ros1_comms ├── CMakeLists.txt ├── Makefile ├── README.md ├── listener.cpp └── talker.cpp ├── ros1_msgs ├── Bar.msg ├── CMakeLists.txt ├── Foo.msg ├── Makefile ├── README.md ├── use_custom_msg.cpp ├── use_existing_msg.cpp └── use_msgs.py ├── ros1_srvs ├── Bat.srv ├── Baz.srv ├── CMakeLists.txt ├── Makefile ├── README.md ├── use_custom_srv.cpp ├── use_existing_srv.cpp └── use_srvs.py └── roslaunch_example ├── Makefile ├── README.md ├── listener.cpp ├── talker.cpp └── talker_listener.launch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/README.md -------------------------------------------------------------------------------- /opencv_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/opencv_example/Makefile -------------------------------------------------------------------------------- /opencv_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/opencv_example/README.md -------------------------------------------------------------------------------- /opencv_example/publish_cv_cam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/opencv_example/publish_cv_cam.cpp -------------------------------------------------------------------------------- /ros1_actions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_actions/CMakeLists.txt -------------------------------------------------------------------------------- /ros1_actions/DoDishes.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_actions/DoDishes.action -------------------------------------------------------------------------------- /ros1_actions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_actions/Makefile -------------------------------------------------------------------------------- /ros1_actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_actions/README.md -------------------------------------------------------------------------------- /ros1_actions/actionclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_actions/actionclient.cpp -------------------------------------------------------------------------------- /ros1_actions/actionserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_actions/actionserver.cpp -------------------------------------------------------------------------------- /ros1_comms/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_comms/CMakeLists.txt -------------------------------------------------------------------------------- /ros1_comms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_comms/Makefile -------------------------------------------------------------------------------- /ros1_comms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_comms/README.md -------------------------------------------------------------------------------- /ros1_comms/listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_comms/listener.cpp -------------------------------------------------------------------------------- /ros1_comms/talker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_comms/talker.cpp -------------------------------------------------------------------------------- /ros1_msgs/Bar.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_msgs/Bar.msg -------------------------------------------------------------------------------- /ros1_msgs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_msgs/CMakeLists.txt -------------------------------------------------------------------------------- /ros1_msgs/Foo.msg: -------------------------------------------------------------------------------- 1 | int16 foo 2 | -------------------------------------------------------------------------------- /ros1_msgs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_msgs/Makefile -------------------------------------------------------------------------------- /ros1_msgs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_msgs/README.md -------------------------------------------------------------------------------- /ros1_msgs/use_custom_msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_msgs/use_custom_msg.cpp -------------------------------------------------------------------------------- /ros1_msgs/use_existing_msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_msgs/use_existing_msg.cpp -------------------------------------------------------------------------------- /ros1_msgs/use_msgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_msgs/use_msgs.py -------------------------------------------------------------------------------- /ros1_srvs/Bat.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_srvs/Bat.srv -------------------------------------------------------------------------------- /ros1_srvs/Baz.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_srvs/Baz.srv -------------------------------------------------------------------------------- /ros1_srvs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_srvs/CMakeLists.txt -------------------------------------------------------------------------------- /ros1_srvs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_srvs/Makefile -------------------------------------------------------------------------------- /ros1_srvs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_srvs/README.md -------------------------------------------------------------------------------- /ros1_srvs/use_custom_srv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_srvs/use_custom_srv.cpp -------------------------------------------------------------------------------- /ros1_srvs/use_existing_srv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_srvs/use_existing_srv.cpp -------------------------------------------------------------------------------- /ros1_srvs/use_srvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/ros1_srvs/use_srvs.py -------------------------------------------------------------------------------- /roslaunch_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/roslaunch_example/Makefile -------------------------------------------------------------------------------- /roslaunch_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/roslaunch_example/README.md -------------------------------------------------------------------------------- /roslaunch_example/listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/roslaunch_example/listener.cpp -------------------------------------------------------------------------------- /roslaunch_example/talker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/roslaunch_example/talker.cpp -------------------------------------------------------------------------------- /roslaunch_example/talker_listener.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerkey/ros1_external_use/HEAD/roslaunch_example/talker_listener.launch --------------------------------------------------------------------------------