YARP
Yet Another Robot Platform
os/view_count/view_count.cpp

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

/*
* Copyright (C) 2006-2020 Istituto Italiano di Tecnologia (IIT)
* Copyright (C) 2006-2010 RobotCub Consortium
* All rights reserved.
*
* This software may be modified and distributed under the terms of the
* BSD-3-Clause license. See the accompanying LICENSE file for details.
*/
#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;
}
yarp::os::Bottle
A simple collection of objects that can be described and transmitted in a portable way.
Definition: Bottle.h:73
Network.h
main
int main(int argc, char *argv[])
Definition: yarpros.cpp:261
yarp::os::BufferedPort
A mini-server for performing network communication in the background.
Definition: BufferedPort.h:64
BufferedPort.h
yarp::os::Network
Utilities for manipulating the YARP network, including initialization and shutdown.
Definition: Network.h:786
yarp
The main, catch-all namespace for YARP.
Definition: environment.h:18
Bottle.h