当前位置:网站首页>Common SRV types
Common SRV types
2022-06-25 08:16:00 【N1CROWN】
srv The type is equivalent to two message passageway , A send , A receiver
AddTwoInts.srv
# Sum two integers , Before the dotted line is the input quantity , Followed by return quantity
# file location : Customize srv file
int32 a
int32 b
——
int32 sum
Empty.srv
# file location :std_srvs/Empty.srv
# Represents an empty srv type
GetMap.srv
# file location :nav_msgs/GetMap.srv
# Get maps , Note that the request section is empty
nav_msgs/OccupancyGrid map
GetPlan.srv
# file location :nav_msgs/GetPlan.srv
# Get a path from the current position to the target point
geometry_msgs/PoseStamped start # The starting point
geometry_msgs/PoseStamped goal # The target point
float32 tolerance # Reaching the target point x,y Fault tolerance distance of direction
——
nav_msgs/Path plan
SetBool.srv
# file location :std_srvs/SetBools.srv
bool data # Turn the hardware on or off
——
bool success # Indicates whether the hardware is running successfully
string message # Operation information
SetCameraInfo.srv
# file location :sensor_msgs/SetCameraInfo.srv
# By giving CameraInfo Camera information , To calibrate the camera
sensor_msgs/CameraInfo camera_info # Camera information
——
bool success # If the call succeeds , Then return to true
string status_message # Give details of the successful call
SetMap.srv
# file location :nav_msgs/SetMap.srv
# Based on the initial position , Set new map
nav_msgs/OccupancyGrid map
geometry_msgs/PoseWithCovarianceStamped initial_pose
——
bool success
TalkerListener.srv
# file location : Customize srv file
——
bool success # Mark srv Successful operation
string message # Information , Such as error messages
Trigger.srv
# file location :std_srvs/Trigger.srv
——
bool success # Mark srv Successful operation
string message # Information , Such as error messages
边栏推荐
- Bat start NET Core
- What problems do you worry about when you want to switch to software testing?
- 企业全面云化的时代——云数据库的未来
- C examples of using colordialog to change text color and fontdialog to change text font
- 电子学:第008课——实验 6:非常简单的开关
- allgero报错:Program has encountered a problem and must exit. The design will be saved as a .SAV file
- 家庭服务器门户Easy-Gate
- 电子学:第010课——实验 8:继电振荡器
- Wechat applet introduction record
- 力扣 272. 最接近的二叉搜索树值 II 递归
猜你喜欢
随机推荐
Est - il sûr d'ouvrir un compte d'actions maintenant via le lien d'ouverture de compte coiffé?
Force buckle 272 Closest binary search tree value II recursion
Cloud computing exam version 1 0
TS environment setup
Free SSL certificate acquisition tutorial
The difference between personal domain name and enterprise domain name
现在通过开户经理发的开户链接股票开户安全吗?
c#磁盘驱动器及文件夹还有文件类的操作
Is it safe to open an account through the haircut account opening link now?
Electronics: Lesson 013 - Experiment 14: Wearable pulsed luminaries
Logu P2486 [sdoi2011] coloring (tree chain + segment tree + merging of intervals on the tree)
Wechat applet opening customer service message function development
420 sequence traversal of binary tree 2 (429. sequence traversal of n-ary tree, 515. find the maximum value in each tree row, 116. fill in the next right node pointer of each node, 104. maximum depth
Solving some interesting problems with recurrence of function
时钟刻度盘的绘制
How to create a new branch with SVN
Luogu p3313 [sdoi2014] travel (tree chain + edge weight transfer point weight)
Neural network and deep learning-3-simple example of machine learning pytorch
bat启动.NET Core
Log in to MySQL 5.7 under ubuntu18 and set the root password









