YARP
Yet Another Robot Platform
port_power/ex0401_give_reply.cpp

Part of a series of examples on the different ways of using ports. See Port power tutorial.

/*
* SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
* SPDX-FileCopyrightText: 2006-2010 RobotCub Consortium
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <stdio.h>
#include <yarp/os/all.h>
using namespace yarp::os;
int main() {
Network yarp;
Port p; // Create a port.
p.open("/in"); // Give it a name on the network.
Bottle in, out; // Make places to store things.
while (true) {
p.read(in,true); // Read from the port, warn that we'll be replying.
printf("Got %s\n", in.toString().c_str());
out.clear();
out.addString("acknowledge");
out.append(in);
p.reply(out); // send reply.
}
}
An interface to the operating system, including Port based communication.
The main, catch-all namespace for YARP.
Definition: dirs.h:16
int main(int argc, char *argv[])
Definition: yarpros.cpp:263