Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add single panda #1799

Merged
merged 36 commits into from
Oct 30, 2023
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
017a34d
add single panda
yuki-asano Apr 28, 2023
2479817
update from latest franka_control.launch
yuki-asano May 9, 2023
aa2f556
add comments
yuki-asano May 9, 2023
c943a29
remove unused config
yuki-asano May 9, 2023
d19204b
remove gazebo descriptions
yuki-asano May 12, 2023
7a093af
move code for panda.l and modify messages
yuki-asano May 12, 2023
dfa63af
change name
yuki-asano May 12, 2023
3a79e15
change to include franka_control.launch
yuki-asano May 15, 2023
74fc6e4
change larm to rarm
yuki-asano May 23, 2023
0c7347b
panda.urdf.xacro is unnecessary
pazeshun May 19, 2023
21dcf54
[panda_eus] Add panda.urdf and panda.l to .gitignore
pazeshun May 19, 2023
0a7fad9
[panda_eus] Extract common part of panda-interface.l and dual_panda-i…
pazeshun May 24, 2023
9dfe6fb
[jsk_panda_robot] Add single panda to README
pazeshun May 25, 2023
c0bba79
[jsk_panda_robot] Add notice about end-coords, reset-pose, and reset-…
pazeshun May 26, 2023
65cc004
[panda_eus] Improve error message from :set-joint-pd-gain
pazeshun May 26, 2023
c6164d9
enable access to gripper-grasp-action
yuki-asano May 31, 2023
6abfe11
add missing bracket
yuki-asano May 31, 2023
3ff3fd7
Enable to get results of :stop-gripper/:homing-gripper/:start-grasp/:…
pazeshun May 31, 2023
39c9c2e
Enable to get results of :stop-gripper/:homing-gripper/:start-grasp/:…
pazeshun May 31, 2023
e677731
Consider compatibility with FR3 (Franka Research 3)
pazeshun May 31, 2023
499d90d
Remove unnecessary method
pazeshun May 31, 2023
0066eb7
extract action from hash
yuki-asano Jun 1, 2023
fc875a0
Revert "extract action from hash"
yuki-asano Jun 1, 2023
66b1e5e
Merge pull request #1 from pazeshun/add-single-panda
yuki-asano Jun 1, 2023
b1460d4
Merge branch 'master' into panda-devel-2
yuki-asano Jun 1, 2023
f58e301
Make errors from :get-*-result readable when * is not called
pazeshun Jun 1, 2023
aacbf62
Force to call all :wait-for-result and postprocess even if some of th…
pazeshun Jun 1, 2023
653bb9b
Merge pull request #2 from pazeshun/add-single-panda
yuki-asano Jun 2, 2023
408bce5
[panda_eus] Change dual_panda's end-coords to the same as single panda
pazeshun Jul 31, 2023
5f3c673
[panda_eus] Move end-coords of single panda and dual_panda to the cen…
pazeshun Aug 4, 2023
b555196
Merge pull request #3 from pazeshun/change-end-coords
yuki-asano Oct 12, 2023
0a34501
[panda_eus] Make :gripper method work
pazeshun Oct 16, 2023
72a2bc6
[panda_eus] Make URDF follow euslisp model
pazeshun Oct 16, 2023
141b6cf
[panda_eus] Enable to get gripper method result without waiting
pazeshun Oct 17, 2023
f8d3cc4
[panda_eus] Enable to get status of gripper actions
pazeshun Oct 17, 2023
e7e82d5
Merge pull request #4 from pazeshun/fix-gripper-state
yuki-asano Oct 26, 2023
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
Prev Previous commit
Next Next commit
[jsk_panda_robot] Add single panda to README
pazeshun committed May 26, 2023
commit 9dfe6fbb1d32e18355360c68cbd3e04e3b15490e
28 changes: 28 additions & 0 deletions jsk_panda_robot/README.md
Original file line number Diff line number Diff line change
@@ -49,6 +49,34 @@
```


## Running single Panda
### Boot robot
1. Please turn on the controller box and unlock joints by accessing desk.
### Via roseus
1. Start controller on controller PC:
```bash
ssh [email protected] # Or ssh [email protected]
roslaunch jsk_panda_startup panda.launch robot_ip:=<IP OF TARGET ROBOT>
```

2. Controlling single Panda via roseus:
1. Setting up network:
```bash
rossetmaster dual-panda1.jsk.imi.i.u-tokyo.ac.jp # Or rossetmaster dual-panda2.jsk.imi.i.u-tokyo.ac.jp
rossetip
```
2. Execute following script in roseus:
```lisp
(load "package://panda_eus/euslisp/panda-interface.l")
(panda-init)
(send *robot* :angle-vector (send *robot* :reset-pose))
(when (send *ri* :check-error)
(send *ri* :recover-error))
(send *ri* :angle-vector (send *robot* :angle-vector) 3000)
```
`(send *ri* :recover-error)` is required every time when you press and release the black switch (`activated` -> `monitored stop` -> `activated`).


## Running Dual-Panda
### Boot robot
1. Please turn on the controller box and unlock joints by accessing desk.