ROS Components for hexapod_robot
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

23 rindas
798B

  1. #include "rclcpp/rclcpp.hpp"
  2. #include "hexapod_robot/srv/hexapod_robot_inverse_kinematics.hpp"
  3. #include <memory>
  4. void ik(const std::shared_ptr<hexapod_robot::srv::HexapodRobotInverseKinematics::Request> request,
  5. std::shared_ptr<hexapod_robot::srv::HexapodRobotInverseKinematics::Response> response) {
  6. response -> bar = request -> foo;
  7. }
  8. int main(int argc, char **argv) {
  9. rclcpp::init(argc, argv);
  10. std::shared_ptr<rclcpp::Node> node = rclcpp::Node::make_shared("hexapod_robot_inverse_kinematics_server");
  11. rclcpp::Service<hexapod_robot::srv::HexapodRobotInverseKinematics>::SharedPtr service =
  12. node -> create_service<hexapod_robot::srv::HexapodRobotInverseKinematics>("hexapod_robot_inverse_kinematics", &ik);
  13. rclcpp::spin(node);
  14. rclcpp::shutdown();
  15. }