File tree 5 files changed +32
-0
lines changed
5 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
5
5
## [ Unreleased]
6
6
7
+ ### Added
8
+
9
+ - Description: Kinova Gen3 Lite (URDF)
10
+
7
11
### Changed
8
12
9
13
- Update ` baxter_common ` repository with a commit ID rather than a tag
Original file line number Diff line number Diff line change @@ -140,6 +140,7 @@ The DOF column denotes the number of actuated degrees of freedom.
140
140
| ` fr3_mj_description ` | FR3 | Franka Robotics | MJCF | Apache-2.0 |
141
141
| ` gen2_description ` | Gen2 | Kinova | URDF | BSD-3-Clause |
142
142
| ` gen3_description ` | Gen3 | Kinova | URDF | MIT |
143
+ | ` gen3_lite_description ` | Gen3 Lite | Kinova | URDF | BSD-3-Clause |
143
144
| ` gen3_mj_description ` | Gen3 | Kinova | MJCF | BSD-2-Clause |
144
145
| ` iiwa14_description ` | iiwa 14 | KUKA | URDF | BSD-3-Clause |
145
146
| ` iiwa14_mj_description ` | iiwa 14 | KUKA | MJCF | BSD-3-Clause |
Original file line number Diff line number Diff line change @@ -109,6 +109,7 @@ def has_urdf(self) -> bool:
109
109
"g1_mj_description" : Description (Format .MJCF , tags = {"humanoid" }),
110
110
"gen2_description" : Description (Format .URDF , tags = {"arm" }),
111
111
"gen3_description" : Description (Format .URDF , tags = {"arm" }),
112
+ "gen3_lite_description" : Description (Format .URDF , tags = {"arm" }),
112
113
"gen3_mj_description" : Description (Format .MJCF , tags = {"arm" }),
113
114
"ginger_description" : Description (
114
115
Format .URDF , tags = {"mobile_manipulator" }
Original file line number Diff line number Diff line change @@ -245,6 +245,11 @@ class Repository:
245
245
commit = "0.1.5" ,
246
246
cache_path = "romeo_robot" ,
247
247
),
248
+ "ros2_kortex" : Repository (
249
+ url = "https://github.com/Kinovarobotics/ros2_kortex.git" ,
250
+ commit = "fb633aacf9c1c85d61a96c1099b5afa3d533e5a3" ,
251
+ cache_path = "ros2_kortex" ,
252
+ ),
248
253
"rtmros_nextage" : Repository (
249
254
url = "https://github.com/tork-a/rtmros_nextage.git" ,
250
255
commit = "ac270fb969fa54abeb6863f9b388a9e20c1f14e0" ,
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+ #
4
+ # SPDX-License-Identifier: Apache-2.0
5
+ # Copyright 2025 Inria
6
+
7
+ """Kinova Gen3 Lite description."""
8
+
9
+ from os import getenv as _getenv
10
+ from os import path as _path
11
+
12
+ from ._cache import clone_to_cache as _clone_to_cache
13
+
14
+ REPOSITORY_PATH : str = _clone_to_cache (
15
+ "ros2_kortex" ,
16
+ commit = _getenv ("ROBOT_DESCRIPTION_COMMIT" , None ),
17
+ )
18
+
19
+ PACKAGE_PATH : str = _path .join (REPOSITORY_PATH , "kortex_description" )
20
+
21
+ URDF_PATH : str = _path .join (PACKAGE_PATH , "robots" , "gen3_lite.urdf" )
You can’t perform that action at this time.
0 commit comments