-
Brief descriptionHello! Detailed contextI previously posted issue #406 here about adding fiducial marker textures to the iCub_SIM and place them on the robot's hand. I attached a .zip file containing a video of what happens in yarpmotorgui, which is identical when commands are sent using code. Accompanying material |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi @gccunha1 I've made a test with a command line swiss knife called >> simpleClient --robot icubSim --part right_arm
-> get llim 3
llim: limits: (15.50 106.00)
-> set pos 3 15.50
pos: moving 3 to 15.50
-> get encs
Bottle: get encs
encs: (-25.00 20.00 0.00 15.50 0.00 -0.00 0.00 59.00 20.00 20.00 20.00 10.00 10.00 10.00 10.00 10.00 )
-> set pos 3 106.0
Bottle: set pos 3 106.0
pos: moving 3 to 106.00
-> get encs
Bottle: get encs
encs: (-25.00 20.00 0.00 106.00 0.00 0.00 0.00 59.00 20.00 20.00 20.00 10.00 10.00 10.00 10.00 10.00 ) As you can see from the log above, the actual joint limits are When it comes down to the code, you must have asked to move to Regarding the weird beahavior of |
Beta Was this translation helpful? Give feedback.
-
Yes, I was not doing that and I actually didn't know that function, I was relying on the values from yarpmotorgui and I hard-coded the bounds. I will open the issue at https://github.com/robotology/yarp/issues. Thanks for the reply! |
Beta Was this translation helpful? Give feedback.
Hi @gccunha1
I've made a test with a command line swiss knife called
simpleClient
.As you can see from the log above, the actual joint limits are
(15.5 106)
degrees. That can explain why you've been experiencing problems with they…