-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JointStateのPublish #13
Conversation
逆運動学の計算結果をJointStateとしてPublishすることで、GAZEBO上のRaspiGibbonが動くようになりました。 |
👍 こちらでも動作確認してみますね |
ありがとうございます。あとでUsage書いときます。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
b27d6ef で動かしてみました。気になった点は2つあります。
- ジョイントの角度が急激に変化する場合があること
- rostopicを受け取ってからジョイントへの角度の反映まで少々ラグがありそのラグが蓄積されていること
そうですね。現状ジョイント角の角速度に制限を設けていないので、目標手先位置が急激に変わるとジョイント角速度も速くなってしまいますね。 |
角度の更新周期で動かせる最大角は決まると思うのでそれで角度指令にリミットをかけたりすると良さそうです。
そうですね。逆運動学の計算が間に合っていない(10Hzでパブリッシュできてない)可能性があるので一度更新周期を長くして確認してみますね。 |
こちら確認してみました。確認したコードはこちら( ad899d8 )です。 |
角速度の制限を追加してみました。 |
で |
#11