해당 실습 자료는 한양대학교 Road Balance - ROS 2 for G CampROS 2 Documentation: Foxy, 표윤석, 임태훈 <ROS 2로 시작하는 로봇 프로그래밍> 루피페이퍼(2022) 를 참고하여 작성하였습니다.


이번 장에서는 Server NodeClient Node 간의 메세지 통신 Action을 구현해볼 예정입니다.

<1. Action 인터페이스 패키지 만들기>

Creating custom msg and srv files — ROS 2 Documentation: Foxy documentation

인터페이스

인터페이스

Untitled

방법1: 직접 인터페이스 패키지 만들기

방법2: 깃클론해서 패키지 빌드하기

4. Build하기

$ source /opt/ros/foxy/setup.bash
$ cd ~/ros2_ws/
$ colcon build --symlink-install --packages-select custom_action_interface
$ source ./install/setup.bash

$ ros2 interface show custom_action_interface/action/Fibonacci
##================== 출력 결과 ==================
**# Goal
int32 order
---
# Result
int32[] sequence
---
# Feedback
int32[] partial_sequence
##**===============================================