YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
port_power/ex0500_raw_target_receiver.cpp

Part of a series of examples on the different ways of using ports.

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;
// define the Target class
#include "TargetVer1.h"
int main() {
Port p; // Create a port.
p.open("/target/raw/in"); // Give it a name on the network.
BinPortable<Target> b; // Make a place to store things.
while (true) {
p.read(b); // Read from the port. Waits until data arrives.
// Do something with data.
printf("Got (%d,%d)\n", b.content().x, b.content().y);
}
return 0;
}
T & content()
Get the internal structure that will be read or written.
A mini-server for performing network communication in the background.
bool open(const std::string &name) override
Start port operation, with a specific name, with automatically-chosen network parameters.
T * read(bool shouldWait=true) override
Read an available object from the port.
Utilities for manipulating the YARP network, including initialization and shutdown.
Definition Network.h:706
A mini-server for network communication.
Definition Port.h:46
An interface to the operating system, including Port based communication.
The main, catch-all namespace for YARP.
Definition dirs.h:16