File tree Expand file tree Collapse file tree 11 files changed +22
-18
lines changed
rcs_robotiq/src/rcs_robotiq
rcs_so101/src/rcs_so101/_core Expand file tree Collapse file tree 11 files changed +22
-18
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -12,5 +12,5 @@ rcs_realsense
1212rcs_usb_cam
1313rcs_tacto
1414rcs_robotics_library
15- rcs_robotiq
15+ rcs_robotiq2f85
1616```
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1- # RCS Robotiq Extension
1+ # RCS Robotiq2F85 Extension
22
33This 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
1111Get 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
2525gripper = RobotiQGripper(' <YOUR_SERIAL_NUMBER>' )
2626gripper.reset()
Original file line number Diff line number Diff line change 1- # RCS Robotiq Gripper Hardware Extension
1+ # RCS Robotiq 2F-85 Gripper Hardware Extension
22Extension 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
2323gripper = RobotiQGripper(' <YOUR_SERIAL_NUMBER>' )
2424gripper.reset()
Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ requires = ["setuptools"]
33build-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"
88description =" RCS RobotiQ module"
99dependencies = [
10- " rcs>=0.5.0 " ,
10+ " rcs>=0.6.2 " ,
1111 " 2f85-python-driver @ git+https://github.com/PhilNad/2f85-python-driver.git" ,
1212]
1313readme = " README.md"
Original file line number Diff line number Diff line change 1+ __version__ = "0.6.2"
File renamed without changes.
Original file line number Diff line number Diff line change 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-
1514from __future__ import annotations
1615
1716from . import so101_ik
You can’t perform that action at this time.
0 commit comments