File tree Expand file tree Collapse file tree 1 file changed +6
-9
lines changed
hrpsys_ros_bridge_tutorials/euslisp Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change 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*))
You can’t perform that action at this time.
0 commit comments