Skip to content

Commit

Permalink
Merge pull request #743 from k-okada/fix-readme
Browse files Browse the repository at this point in the history
jsk_fetch_robot : fixed version of update readme #735
  • Loading branch information
k-okada authored Dec 11, 2016
2 parents 9245f87 + 065f4bf commit 5ffab6a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion jsk_fetch_robot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,14 @@ fetch-interface function APIs
(send *ri* :angle-vector (send *fetch* :angle-vector) 5000)
```

- send current head joint angles of robot model to real robot, this command only control joints of head limb. (DO NOT USE THIS COMMAND EXCEPT **HEAD**)

```
(send *fetch :head :neck-y :joint-angle 50)
(send *ri* :angle-vector-raw (send *fetch* :angle-vector) 3000 :head-controller)
(send *ri* :wait-interpolation)
```

- get angle value of individual joint
```
(send *fetch* :torso :waist-z :joint-angle)
Expand Down Expand Up @@ -162,10 +170,11 @@ fetch-interface function APIs
(send *ri* :move-to (make-coords :pos #f(0 8150 0)) :frame-id "/map") ;; :retry 1 ;;[mm]
```

- speak
- use text-to-speech engine to speak text

```
(send *ri* :speak "hello")
(send *ri* :speak (format nil "hello, ~A + ~A is ~A" 1 1 (+ 1 1)))
```

FAQ
Expand Down

0 comments on commit 5ffab6a

Please sign in to comment.