Skip to content

Commit 56a3132

Browse files
committed
chore(robotiq): rename, ci and version
- rename rcs_robotiq to rcs_robotiq2f85 - added version bump to robotiq - added robotiq to pipeline
1 parent d8d6255 commit 56a3132

File tree

11 files changed

+22
-18
lines changed

11 files changed

+22
-18
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
# Python extensions
7272
- rcs_xarm7
7373
- rcs_realsense
74-
# - rcs_robotiq
74+
- rcs_robotiq2f85
7575
- rcs_tacto
7676
- rcs_usb_cam
7777
runs-on: ubuntu-latest

docs/extensions/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ rcs_realsense
1212
rcs_usb_cam
1313
rcs_tacto
1414
rcs_robotics_library
15-
rcs_robotiq
15+
rcs_robotiq2f85
1616
```

docs/extensions/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RCS comes with several supported extensions:
3030
- **rcs_usb_cam**: Support for generic USB webcams.
3131
- **rcs_tacto**: Integration with the Tacto tactile sensor simulator.
3232
- **rcs_robotics_library**: Integration with the Robotics Library (RL).
33-
- **rcs_robotiq**: Integration with the Robotiq 2F-85 Gripper.
33+
- **rcs_robotiq2f85**: Integration with the Robotiq 2F-85 Gripper.
3434

3535
## Creating Extensions
3636

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# RCS Robotiq Extension
1+
# RCS Robotiq2F85 Extension
22

33
This extension provides support for Robotiq 2F-85 Gripper in RCS.
44

55
## Installation
66

77
```shell
8-
pip install -ve extensions/rcs_robotiq
8+
pip install -ve extensions/rcs_robotiq2f85
99
```
1010

1111
Get the serial number of the gripper with this command:
@@ -20,7 +20,7 @@ chmod 777 /dev/ttyUSB0
2020

2121
## Usage
2222
```python
23-
from rcs_robotiq import RobotiQGripper
23+
from rcs_robotiq2f85 import RobotiQGripper
2424

2525
gripper = RobotiQGripper('<YOUR_SERIAL_NUMBER>')
2626
gripper.reset()

extensions/rcs_robotiq/src/rcs_robotiq/__init__.py

Whitespace-only changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RCS Robotiq Gripper Hardware Extension
1+
# RCS Robotiq 2F-85 Gripper Hardware Extension
22
Extension to use the Robotiq 2F-85 Gripper with rcs.
33

44
## Installation
@@ -18,7 +18,7 @@ chmod 777 /dev/ttyUSB0
1818

1919
## Usage
2020
```python
21-
from rcs_robotiq import RobotiQGripper
21+
from rcs_robotiq2f85 import RobotiQGripper
2222

2323
gripper = RobotiQGripper('<YOUR_SERIAL_NUMBER>')
2424
gripper.reset()
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ requires = ["setuptools"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "rcs_robotiq"
7-
version = "0.5.2"
6+
name = "rcs_robotiq2f85"
7+
version = "0.6.2"
88
description="RCS RobotiQ module"
99
dependencies = [
10-
"rcs>=0.5.0",
10+
"rcs>=0.6.2",
1111
"2f85-python-driver @ git+https://github.com/PhilNad/2f85-python-driver.git",
1212
]
1313
readme = "README.md"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = "0.6.2"
File renamed without changes.

extensions/rcs_so101/src/rcs_so101/_core/__init__.pyi

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
# ATTENTION: auto generated from C++ code, use `make stubgen` to update!
22
"""
33
4-
Robot Control Stack Python Bindings
5-
-----------------------
4+
Robot Control Stack Python Bindings
5+
-----------------------
66
7-
.. currentmodule:: _core
8-
9-
.. autosummary::
10-
:toctree: _generate
7+
.. currentmodule:: _core
118
9+
.. autosummary::
10+
:toctree: _generate
1211
12+
1313
"""
14-
1514
from __future__ import annotations
1615

1716
from . import so101_ik

0 commit comments

Comments
 (0)