-
Notifications
You must be signed in to change notification settings - Fork 97
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 #5 from pazeshun/reuse-panda-on-fr3
Re-use panda-robot-interface in fr3-robot-interface & Add fr3 to README
- Loading branch information
Showing
3 changed files
with
9 additions
and
24 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 |
---|---|---|
|
@@ -49,26 +49,26 @@ | |
``` | ||
|
||
|
||
## Running single Panda | ||
## Running single Panda/FR3 (Franka Research 3) | ||
### 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> | ||
roslaunch jsk_panda_startup panda.launch robot_ip:=<IP OF TARGET ROBOT> # FR3: roslaunch jsk_panda_startup fr3.launch robot_ip:=<IP OF TARGET ROBOT> | ||
``` | ||
|
||
2. Controlling single Panda via roseus: | ||
2. Controlling single Panda/FR3 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) | ||
(load "package://panda_eus/euslisp/panda-interface.l") ;; FR3: (load "package://panda_eus/euslisp/fr3-interface.l") | ||
(panda-init) ;; FR3: (fr3-init) | ||
(send *robot* :angle-vector (send *robot* :reset-pose)) | ||
(when (send *ri* :check-error) | ||
(send *ri* :recover-error)) | ||
|
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