Skip to content

Commit 8447d10

Browse files
committed
Add :time key to :stop-grasp
1 parent 0b9949b commit 8447d10

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

hrpsys_ros_bridge_tutorials/euslisp/hironxjsk-interface.l

+6-9
Original file line numberDiff line numberDiff line change
@@ -332,15 +332,12 @@
332332
(:rarm (setq arm :rhand))
333333
(:larm (setq arm :lhand)))
334334
(send self :hand-width arm 0 :time time :effort effort))
335-
(:stop-grasp (&optional (arm :arms) &key effort)
336-
(cond ((eq arm :rarm)
337-
(send self :hand-width :rhand 100 :effort effort))
338-
((eq arm :larm)
339-
(send self :hand-width :lhand 100 :effort effort))
340-
((eq arm :arms)
341-
(send self :hand-width :rhand 100 :effort effort)
342-
(send self :hand-width :lhand 100 :effort effort))
343-
(t (error ";; No such arm: ~A~%." arm)))))
335+
(:stop-grasp (&optional (arm :arms) &key (time 1000) effort)
336+
(case arm
337+
(:arms (setq arm :hands))
338+
(:rarm (setq arm :rhand))
339+
(:larm (setq arm :lhand)))
340+
(send self :hand-width arm 100 :time time :effort effort))
344341

345342
(defun hironxjsk-init (&rest args)
346343
(if (not (boundp '*ri*))

0 commit comments

Comments
 (0)