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
No description provided.
The text was updated successfully, but these errors were encountered:
RCLCPP_INFO(get_logger(), "debug x : [%f]", v.x); RCLCPP_INFO(get_logger(), "debug y : [%f]", v.y);
もしくは、259行目以下の条件文を以下のように変更した
if ((v.y * v_robot.x - v.x * v_robot.y) >= (-v.y * v_robot.x + v.x * v_robot.y)) { goal_rpy.z = std::atan2(-v.x, v.y); RCLCPP_INFO(get_logger(), "debug x : [%f]", goal_rpy.z); } else { goal_rpy.z = std::atan2(v.x, -v.y); RCLCPP_INFO(get_logger(), "debug y : [%f]", goal_rpy.z); }
ros2 launch navi_sim with_planner.launch.py behavior_config_filepath:=config/move_to_gate.yaml
Sorry, something went wrong.
バグの様子
かなり不可解ですね、/move_base_simple/goalトピックを出しているノードは複数あるはずなので、そのうちどれが奇妙な出力をだしているか確認する必要があるかもしれません。
なんだかこれ、90度ずれていますね
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: