HLR  0.0.1
RobotDriverHandler.hpp
1 #ifndef KINEMATICS_ROBOTDRIVERHANDLER_HPP
2 #define KINEMATICS_ROBOTDRIVERHANDLER_HPP
3 
4 #include <ros/ros.h>
5 #include <Kinematics/Matrix.hpp>
6 
7 namespace HLR
8 {
9 namespace Kinematics
10 {
15 {
16 public:
22  virtual Matrix<double, 5, 1> get_arm_state() const noexcept = 0;
23 
30  virtual void move(const std::vector<Matrix<double, 5, 1>>& path,
31  double speed) = 0;
32 
36  virtual void stop() = 0;
37 };
38 
39 } // namespace Kinematics
40 } // namespace HLR
41 
42 #endif
virtual void stop()=0
Stop the robotarm if it is moving/.
virtual Matrix< double, 5, 1 > get_arm_state() const noexcept=0
Get the current position of the robot arm.
Interface that exposes the interface to the robotarm.
Definition: RobotDriverHandler.hpp:14
virtual void move(const std::vector< Matrix< double, 5, 1 >> &path, double speed)=0
Move the robot arm along a path.