libfranka 0.15.0
FCI C++ API
Loading...
Searching...
No Matches
echo_robot_state.cpp

An example showing how to continuously read the robot state.

An example showing how to continuously read the robot state.

// Copyright (c) 2023 Franka Robotics GmbH
// Use of this source code is governed by the Apache-2.0 license, see LICENSE
#include <iostream>
#include <franka/robot.h>
int main(int argc, char** argv) {
if (argc != 2) {
std::cerr << "Usage: " << argv[0] << " <robot-hostname>" << std::endl;
return -1;
}
try {
franka::Robot robot(argv[1]);
size_t count = 0;
robot.read([&count](const franka::RobotState& robot_state) {
// Printing to std::cout adds a delay. This is acceptable for a read loop such as this, but
// should not be done in a control loop.
std::cout << robot_state << std::endl;
return count++ < 100;
});
std::cout << "Done." << std::endl;
} catch (franka::Exception const& e) {
std::cout << e.what() << std::endl;
return -1;
}
return 0;
}
Maintains a network connection to the robot, provides the current robot state, gives access to the mo...
Definition robot.h:68
void read(std::function< bool(const RobotState &)> read_callback)
Starts a loop for reading the current robot state.
Contains exception definitions.
Contains the franka::Robot type.
Base class for all exceptions used by libfranka.
Definition exception.h:20
Describes the robot state.
Definition robot_state.h:34