Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ Interfaces for the Robontiks Safety system of:
Interfaces to manage Robotnik stacks and modules. Used by
- https://github.com/RobotnikAutomation/robotnik_docker_supervisor

### robotnik_manipulation_msgs

Interfaces to manage ur_interepreter of Robotnik Manipulation Packages

## How to add a new interface

Expand Down
7 changes: 7 additions & 0 deletions robotnik_manipulation_msgs/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package robotnik_manipulation_msgs
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

1.0.0 (2025-04-29)
------------------
* Initial release
41 changes: 41 additions & 0 deletions robotnik_manipulation_msgs/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
cmake_minimum_required(VERSION 3.5)
project(robotnik_manipulation_msgs)

find_package(ament_cmake REQUIRED)
find_package(builtin_interfaces REQUIRED)
find_package(rosidl_default_generators REQUIRED)

find_package(std_msgs REQUIRED)
find_package(action_msgs REQUIRED)
find_package(robotnik_common_msgs REQUIRED)

set(msg_files
)

set(srv_files
)

set(action_files
"action/SendCommand.action"
)

rosidl_generate_interfaces(${PROJECT_NAME}
${msg_files}
${srv_files}
${action_files}
DEPENDENCIES
builtin_interfaces
action_msgs
geometry_msgs
robotnik_common_msgs
ADD_LINTER_TESTS
)

ament_export_dependencies(rosidl_default_runtime)

if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
ament_lint_auto_find_test_dependencies()
endif()

ament_package()
12 changes: 12 additions & 0 deletions robotnik_manipulation_msgs/action/SendCommand.action
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Goal
string command
---
# Result
string command
bool success
string description
int16 code
---
# Feedback
string command
string description
30 changes: 30 additions & 0 deletions robotnik_manipulation_msgs/package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?xml version="1.0"?>
<?xml-model
href="http://download.ros.org/schema/package_format3.xsd"
schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>robotnik_manipulation_msgs</name>
<version>1.0.0</version>
<description>Message definitions for the Robotnik Manipulation Packages</description>

<maintainer email="[email protected]">Robotnik Automation</maintainer>
<license>BSD</license>
<author email="[email protected]">Robotnik Automation</author>

<buildtool_depend>ament_cmake</buildtool_depend>
<buildtool_depend>rosidl_default_generators</buildtool_depend>

<depend>builtin_interfaces</depend>
<depend>action_msgs</depend>
<depend>std_msgs</depend>
<depend>robotnik_common_msgs</depend>

<exec_depend>rosidl_default_runtime</exec_depend>
<test_depend>ament_lint_common</test_depend>

<member_of_group>rosidl_interface_packages</member_of_group>

<export>
<build_type>ament_cmake</build_type>
</export>
</package>