-
Notifications
You must be signed in to change notification settings - Fork 1
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 #3 from SCHUNK-SE-Co-KG/add-license
Add license
- Loading branch information
Showing
22 changed files
with
928 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Copyright 2024 SCHUNK SE & Co. KG | ||
// | ||
// This program is free software: you can redistribute it and/or modify it | ||
// under the terms of the GNU General Public License as published by the Free | ||
// Software Foundation, either version 3 of the License, or (at your option) | ||
// any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, but WITHOUT | ||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
// more details. | ||
// | ||
// You should have received a copy of the GNU General Public License along with | ||
// this program. If not, see <https://www.gnu.org/licenses/>. | ||
// -------------------------------------------------------------------------------- |
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,15 @@ | ||
# Copyright 2024 SCHUNK SE & Co. KG | ||
# | ||
# This program is free software: you can redistribute it and/or modify it | ||
# under the terms of the GNU General Public License as published by the Free | ||
# Software Foundation, either version 3 of the License, or (at your option) | ||
# any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, but WITHOUT | ||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
# more details. | ||
# | ||
# You should have received a copy of the GNU General Public License along with | ||
# this program. If not, see <https://www.gnu.org/licenses/>. | ||
# -------------------------------------------------------------------------------- |
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
21 changes: 21 additions & 0 deletions
21
...k_egu_egk_gripper_driver/include/schunk_egu_egk_gripper_driver/schunk_gripper_wrapper.hpp
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,3 +1,24 @@ | ||
// Copyright 2024 SCHUNK SE & Co. KG | ||
// | ||
// This program is free software: you can redistribute it and/or modify it | ||
// under the terms of the GNU General Public License as published by the Free | ||
// Software Foundation, either version 3 of the License, or (at your option) | ||
// any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, but WITHOUT | ||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
// more details. | ||
// | ||
// You should have received a copy of the GNU General Public License along with | ||
// this program. If not, see <https://www.gnu.org/licenses/>. | ||
// -------------------------------------------------------------------------------- | ||
|
||
/* | ||
* Author: Viktoria Krimer ([email protected]) | ||
* Maintainer: Stefan Scherzinger ([email protected]) | ||
*/ | ||
|
||
#ifndef SCHUNK_GRIPPER_WRAPPER_HPP | ||
#define SCHUNK_GRIPPER_WRAPPER_HPP | ||
|
||
|
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 |
---|---|---|
|
@@ -4,10 +4,10 @@ | |
<version>1.0.0</version> | ||
<description>ROS2 driver for Schunk's EGU/EGK grippers</description> | ||
<author>Viktora Krimer</author> | ||
<author>Fabian Reinwald</author> | ||
<author email="[email protected]">Fabian Reinwald</author> | ||
<maintainer email="[email protected]">Stefan Scherzinger</maintainer> | ||
|
||
<license>todo</license> | ||
<license>GPL-3.0-or-later</license> | ||
|
||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
|
||
|
@@ -23,10 +23,11 @@ | |
|
||
<exec_depend>ros2launch</exec_depend> | ||
|
||
<test_depend>ament_lint_auto</test_depend> | ||
<test_depend>ament_cmake_copyright</test_depend> | ||
|
||
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
|
||
</package> | ||
|
||
|
21 changes: 21 additions & 0 deletions
21
schunk_egu_egk_gripper_driver/src/schunk_gripper_wrapper.cpp
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,3 +1,24 @@ | ||
// Copyright 2024 SCHUNK SE & Co. KG | ||
// | ||
// This program is free software: you can redistribute it and/or modify it | ||
// under the terms of the GNU General Public License as published by the Free | ||
// Software Foundation, either version 3 of the License, or (at your option) | ||
// any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, but WITHOUT | ||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
// more details. | ||
// | ||
// You should have received a copy of the GNU General Public License along with | ||
// this program. If not, see <https://www.gnu.org/licenses/>. | ||
// -------------------------------------------------------------------------------- | ||
|
||
/* | ||
* Author: Viktoria Krimer ([email protected]) | ||
* Maintainer: Stefan Scherzinger ([email protected]) | ||
*/ | ||
|
||
#include "schunk_egu_egk_gripper_driver/schunk_gripper_wrapper.hpp" | ||
|
||
std::map<std::string, const char*> param_inst = | ||
|
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 |
---|---|---|
|
@@ -4,10 +4,10 @@ | |
<version>1.0.0</version> | ||
<description>Example node for Schunk's EGU/EGK driver interfaces</description> | ||
<author>Viktora Krimer</author> | ||
<author>Fabian Reinwald</author> | ||
<author email="[email protected]">Fabian Reinwald</author> | ||
<maintainer email="[email protected]">Stefan Scherzinger</maintainer> | ||
|
||
<license>todo</license> | ||
<license>GPL-3.0-or-later</license> | ||
|
||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
|
||
|
@@ -19,6 +19,9 @@ | |
<depend>control_msgs</depend> | ||
<depend>sensor_msgs</depend> | ||
|
||
<test_depend>ament_lint_auto</test_depend> | ||
<test_depend>ament_cmake_copyright</test_depend> | ||
|
||
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
|
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,3 +1,24 @@ | ||
// Copyright 2024 SCHUNK SE & Co. KG | ||
// | ||
// This program is free software: you can redistribute it and/or modify it | ||
// under the terms of the GNU General Public License as published by the Free | ||
// Software Foundation, either version 3 of the License, or (at your option) | ||
// any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, but WITHOUT | ||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
// more details. | ||
// | ||
// You should have received a copy of the GNU General Public License along with | ||
// this program. If not, see <https://www.gnu.org/licenses/>. | ||
// -------------------------------------------------------------------------------- | ||
|
||
/* | ||
* Author: Viktoria Krimer ([email protected]) | ||
* Maintainer: Stefan Scherzinger ([email protected]) | ||
*/ | ||
|
||
//This Client shows you how to control your gripper in program. If you do something else, as long as the program works, | ||
//this program will exhibit undefined behavior. | ||
#include "rclcpp/rclcpp.hpp" | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
<version>1.0.0</version> | ||
<description>Provides interface descriptions to communicate with SCHUNK EGU/EGK grippers over ROS 2</description> | ||
<maintainer email="[email protected]">Stefan Scherzinger</maintainer> | ||
<license>todo</license> | ||
<license>GPL-3.0-or-later</license> | ||
|
||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
<buildtool_depend>rosidl_default_generators</buildtool_depend> | ||
|
@@ -19,7 +19,7 @@ | |
<depend>diagnostic_msgs</depend> | ||
|
||
<test_depend>ament_lint_auto</test_depend> | ||
<test_depend>ament_lint_common</test_depend> | ||
<test_depend>ament_cmake_copyright</test_depend> | ||
|
||
<member_of_group>rosidl_interface_packages</member_of_group> | ||
|
||
|
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
25 changes: 21 additions & 4 deletions
25
schunk_egu_egk_gripper_library/include/schunk_egu_egk_gripper_library/communication.hpp
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,15 +1,32 @@ | ||
// Copyright 2024 SCHUNK SE & Co. KG | ||
// | ||
// This program is free software: you can redistribute it and/or modify it | ||
// under the terms of the GNU General Public License as published by the Free | ||
// Software Foundation, either version 3 of the License, or (at your option) | ||
// any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, but WITHOUT | ||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
// more details. | ||
// | ||
// You should have received a copy of the GNU General Public License along with | ||
// this program. If not, see <https://www.gnu.org/licenses/>. | ||
// -------------------------------------------------------------------------------- | ||
|
||
/* | ||
* Author: Viktoria Krimer ([email protected]) | ||
* Maintainer: Viktoria Krimer ([email protected]) | ||
* Created: DECEMBER 2023 | ||
* | ||
* Maintainer: Stefan Scherzinger ([email protected]) | ||
*/ | ||
|
||
|
||
/* | ||
* Definitions to communicate with the Gripper via AnybusCom 40. | ||
* | ||
* This task involves receiving a ByteString via HTTP, interpreting it, | ||
* and posting a ByteString if any action needs to be performed by the gripper. | ||
*/ | ||
|
||
|
||
#ifndef COMMUNICATION_HPP | ||
#define COMMUNICATION_HPP | ||
|
||
|
23 changes: 20 additions & 3 deletions
23
schunk_egu_egk_gripper_library/include/schunk_egu_egk_gripper_library/schunk_gripper_lib.hpp
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,8 +1,25 @@ | ||
// Copyright 2024 SCHUNK SE & Co. KG | ||
// | ||
// This program is free software: you can redistribute it and/or modify it | ||
// under the terms of the GNU General Public License as published by the Free | ||
// Software Foundation, either version 3 of the License, or (at your option) | ||
// any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, but WITHOUT | ||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
// more details. | ||
// | ||
// You should have received a copy of the GNU General Public License along with | ||
// this program. If not, see <https://www.gnu.org/licenses/>. | ||
// -------------------------------------------------------------------------------- | ||
|
||
/* | ||
* Author: Viktoria Krimer ([email protected]) | ||
* Maintainer: Viktoria Krimer ([email protected]) | ||
* Created: DECEMBER 2023 | ||
* | ||
* Maintainer: Stefan Scherzinger ([email protected]) | ||
*/ | ||
|
||
/* | ||
* Definitions for implementing common procedures to communicate with the gripper. | ||
* | ||
* The gripper initializes at the beginning. It acts as the middleware between | ||
|
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 |
---|---|---|
|
@@ -4,12 +4,14 @@ | |
<version>1.0.0</version> | ||
<description>Standalone C++ library for Schunk's EGU/EGK grippers</description> | ||
<author>Viktora Krimer</author> | ||
<author>Fabian Reinwald</author> | ||
<author email="[email protected]">Fabian Reinwald</author> | ||
<maintainer email="[email protected]">Stefan Scherzinger</maintainer> | ||
|
||
<license>todo</license> | ||
<license>GPL-3.0-or-later</license> | ||
|
||
<buildtool_depend>cmake</buildtool_depend> | ||
<test_depend>ament_copyright</test_depend> | ||
|
||
<export> | ||
<build_type>cmake</build_type> | ||
</export> | ||
|
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,8 +1,25 @@ | ||
// Copyright 2024 SCHUNK SE & Co. KG | ||
// | ||
// This program is free software: you can redistribute it and/or modify it | ||
// under the terms of the GNU General Public License as published by the Free | ||
// Software Foundation, either version 3 of the License, or (at your option) | ||
// any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, but WITHOUT | ||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
// more details. | ||
// | ||
// You should have received a copy of the GNU General Public License along with | ||
// this program. If not, see <https://www.gnu.org/licenses/>. | ||
// -------------------------------------------------------------------------------- | ||
|
||
/* | ||
* Author: Viktoria Krimer ([email protected]) | ||
* Maintainer: Viktoria Krimer ([email protected]) | ||
* Created: DECEMBER 2023 | ||
* | ||
* Maintainer: Stefan Scherzinger ([email protected]) | ||
*/ | ||
|
||
/* | ||
* Implementation to communicate with the Gripper via AnybusCom 40. | ||
* | ||
* This task involves receiving a ByteString via HTTP, interpreting it, | ||
|
Oops, something went wrong.