Skip to content

Commit b7fb90f

Browse files
committed
Allow sequence input on :hand-effort
1 parent 9f9067f commit b7fb90f

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

hrpsys_ros_bridge_tutorials/euslisp/hironxjsk-interface.l

+14-6
Original file line numberDiff line numberDiff line change
@@ -289,21 +289,29 @@
289289
(:hand-servo-off ()
290290
(send self :call-operation-return :servocontrollerservice_servooff))
291291
(:hand-effort (&optional (hand :hands) effort)
292-
"effort is percentage"
292+
"effort is percentage or sequence of percentages"
293293
(let ((ids (case hand
294294
(:hands (list 2 3 4 5 6 7 8 9))
295295
(:rhand (list 2 3 4 5))
296296
(:lhand (list 6 7 8 9))
297297
(t (error ";; No such hand: ~A~%." hand)))))
298-
(if effort
299-
;; setmaxtorque
298+
(cond
299+
((numberp effort)
300+
;; setmaxtorque with same effort value
300301
(mapcar
301302
#'(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
304312
(mapcar
305313
#'(lambda (id) (send (send self :call-operation-return :servocontrollerservice_getmaxtorque :id id) :percentage))
306-
ids))))
314+
ids)))))
307315
(:hand-width2angles (width)
308316
(let ((safetymargin 3) (w0 19) (l1 41.9))
309317
(unless (<= 0 width %(2 * (w0 + l1 - safetymargin)))

0 commit comments

Comments
 (0)