YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
os/view_count/view_count.cpp

View countdown messages coming from a port (paired with os/make_count.cpp example).

View countdown messages coming from a port (paired with os/make_count.cpp example).

/*
* SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
* SPDX-FileCopyrightText: 2006-2010 RobotCub Consortium
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <yarp/os/Bottle.h>
#include <cstdio>
int main(int argc, char* argv[])
{
if (argc != 2) {
return 1;
}
Network yarp;
BufferedPort<Bottle> in;
in.open(argv[1]);
int count = 1;
while (count > 0) {
Bottle* msg = in.read();
count = msg->get(1).asInt32();
printf("at %d\n", count);
}
return 0;
}
A simple collection of objects that can be described and transmitted in a portable way.
Definition Bottle.h:64
A mini-server for performing network communication in the background.
Utilities for manipulating the YARP network, including initialization and shutdown.
Definition Network.h:706
The main, catch-all namespace for YARP.
Definition dirs.h:16