Part of a series of examples on the different ways of using ports. See Port power tutorial.
#include <stdio.h>
int ct = 0;
Port p;
p.open("/out");
while (true) {
Bottle in,out;
out.clear();
out.addString("hello");
out.addString("world");
out.addInt32(ct);
ct++;
p.write(out,in);
if (in.size()>0) {
printf("Got response: %s\n", in.toString().c_str());
} else {
printf("No response\n");
}
}
return 0;
}
void delay(double seconds)
Wait for a certain number of seconds.
An interface to the operating system, including Port based communication.
The main, catch-all namespace for YARP.
int main(int argc, char *argv[])