File tree 1 file changed +14
-6
lines changed
hrpsys_ros_bridge_tutorials/euslisp
1 file changed +14
-6
lines changed Original file line number Diff line number Diff line change 289
289
(:hand-servo-off ()
290
290
(send self :call-operation-return :servocontrollerservice_servooff ))
291
291
(:hand-effort (&optional (hand :hands ) effort)
292
- " effort is percentage"
292
+ " effort is percentage or sequence of percentages "
293
293
(let ((ids (case hand
294
294
(:hands (list 2 3 4 5 6 7 8 9 ))
295
295
(:rhand (list 2 3 4 5 ))
296
296
(:lhand (list 6 7 8 9 ))
297
297
(t (error " ;; No such hand: ~A~% ." hand)))))
298
- (if effort
299
- ; ; setmaxtorque
298
+ (cond
299
+ ((numberp effort)
300
+ ; ; setmaxtorque with same effort value
300
301
(mapcar
301
302
#' (lambda (id) (send self :call-operation-return :servocontrollerservice_setmaxtorque :id id :percentage effort))
302
- ids)
303
- ; ; getmaxtorque
303
+ ids))
304
+ ; ; setmaxtorque with different effort values
305
+ (effort
306
+ (map cons
307
+ #' (lambda (id val)
308
+ (if val (send self :call-operation-return :servocontrollerservice_setmaxtorque :id id :percentage val)))
309
+ ids effort))
310
+ ; ; getmaxtorque
311
+ (t
304
312
(mapcar
305
313
#' (lambda (id) (send (send self :call-operation-return :servocontrollerservice_getmaxtorque :id id) :percentage ))
306
- ids))))
314
+ ids)))))
307
315
(:hand-width2angles (width)
308
316
(let ((safetymargin 3 ) (w0 19 ) (l1 41.9 ))
309
317
(unless (<= 0 width %(2 * (w0 + l1 - safetymargin)))
You can’t perform that action at this time.
0 commit comments