Franky 0.12.0
A High-Level Motion API for Franka
|
Stop motion for cartesian velocity control mode. More...
#include <stop_motion.hpp>
Public Member Functions | |
StopMotion (const RelativeDynamicsFactor &relative_dynamics_factor=1.0, double state_estimate_weight=0.0) | |
![]() | |
CartesianVelocityMotion (const RobotVelocity &target, const franka::Duration &duration=franka::Duration(1000), double state_estimate_weight=0.0, const RelativeDynamicsFactor &relative_dynamics_factor=1.0, const Affine &frame=Affine::Identity()) | |
Construct a Cartesian motion. | |
![]() | |
CartesianVelocityWaypointMotion (const std::vector< VelocityWaypoint< RobotVelocity > > &waypoints, const RelativeDynamicsFactor &relative_dynamics_factor=1.0, Affine ee_frame=Affine::Identity()) | |
![]() | |
VelocityWaypointMotion (std::vector< VelocityWaypoint< RobotVelocity > > waypoints, const RelativeDynamicsFactor &relative_dynamics_factor=1.0) | |
![]() | |
WaypointMotion (std::vector< WaypointType > waypoints, bool return_when_finished=true) | |
![]() | |
virtual | ~Motion ()=default |
void | addReaction (std::shared_ptr< Reaction< ControlSignalType > > reaction) |
Add a reaction to the motion. | |
void | addReactionFront (std::shared_ptr< Reaction< ControlSignalType > > reaction) |
Add a reaction to the front of the reaction list. | |
std::vector< std::shared_ptr< Reaction< ControlSignalType > > > | reactions () |
Currently registered reactions of the motion. | |
void | registerCallback (CallbackType callback) |
Register a callback that is called in every step of the motion. | |
void | init (Robot *robot, const RobotState &robot_state, const std::optional< ControlSignalType > &previous_command) |
Initialize the motion. | |
ControlSignalType | nextCommand (const RobotState &robot_state, franka::Duration time_step, franka::Duration rel_time, franka::Duration abs_time, const std::optional< ControlSignalType > &previous_command) |
Get the next command of the motion. | |
std::shared_ptr< Motion< ControlSignalType > > | checkAndCallReactions (const RobotState &robot_state, franka::Duration rel_time, franka::Duration abs_time) |
Check and call reactions. | |
Stop motion for cartesian velocity control mode.
|
inlineexplicit |
relative_dynamics_factor | Relative dynamics factor for this stop motion. |
state_estimate_weight | Weighting of the robot state estimate vs the target. See CartesianVelocityMotion for details. |