File tree 1 file changed +6
-9
lines changed
hrpsys_ros_bridge_tutorials/euslisp
1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change 332
332
(:rarm (setq arm :rhand ))
333
333
(:larm (setq arm :lhand )))
334
334
(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))
344
341
345
342
(defun hironxjsk-init (&rest args)
346
343
(if (not (boundp ' *ri*))
You can’t perform that action at this time.
0 commit comments