We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
burger_war/burger_war/scripts/all_sensor_sample.py
Line 55 in cfaba73
self.odom_sub = rospy.Subscriber('joint_states', JointState, self.jointstateCallback)
self.joint_states_sub = rospy.Subscriber('joint_states', JointState, self.jointstateCallback)
インスタンス変数の名前がodomとかぶってると思います。
The text was updated successfully, but these errors were encountered:
これ変えたほうがいいですね. 現状odom は使ってないのでバグって見えないだけだと思います.
Sorry, something went wrong.
No branches or pull requests
burger_war/burger_war/scripts/all_sensor_sample.py
Line 55 in cfaba73
上記
self.odom_sub = rospy.Subscriber('joint_states', JointState, self.jointstateCallback)
こうなってますが、
ここって、下記のようにしてなくてよいんですかね?
self.joint_states_sub = rospy.Subscriber('joint_states', JointState, self.jointstateCallback)
インスタンス変数の名前がodomとかぶってると思います。
The text was updated successfully, but these errors were encountered: