Hi Hendrik, you need to create a controller.
Here is the theory:
http://moveit.ros.org/wiki/Executing_Trajectories_with_MoveItBut when I made my own controller I used the fake controller that is being used by default in MoveIt! and modify it to my needs, which is great for open loop control.
Here you can view the fake controller and another example:
https://github.com/ros-planning/moveit_pluginsYou start by modifying the "fake_execution" arg in the demo.launch:
<include file="$(find moveit_pentaxis)/launch/move_group.launch">
<arg name="allow_trajectory_execution" value="true"/>
<arg name="fake_execution" value="
false"/>
<arg name="info" value="true"/>
<arg name="debug" value="$(arg debug)"/>
</include>
Then you will have to create <your-robot-name>_moveit_controller_manager.launch.xml file, which is where you specify the new moveit_controller_manager and the .yaml file.
Cheers,
Moises