dg_blmc_robots
dgm_solo12.hpp
1 
11 #ifndef DGM_SOLO_HH
12 #define DGM_SOLO_HH
13 
14 #include <dynamic_graph_manager/dynamic_graph_manager.hh>
15 #include <blmc_robots/solo12.hpp>
16 #include "dg_blmc_robots/JointCalibration.h"
17 #include "yaml_cpp_catkin/yaml_cpp_fwd.hpp"
18 
19 namespace dg_blmc_robots
20 {
21 
22  class DGMSolo12 : public dynamic_graph::DynamicGraphManager
23  {
24  public:
28  DGMSolo12();
29 
33  ~DGMSolo12();
34 
39  bool is_in_safety_mode();
40 
46 
52  void get_sensors_to_map(dynamic_graph::VectorDGMap& map);
53 
59  void set_motor_controls_from_map(const dynamic_graph::VectorDGMap& map);
60 
72  dg_blmc_robots::JointCalibration::Request& req,
73  dg_blmc_robots::JointCalibration::Response& res);
74 
75  private:
82  void calibrate_joint_position(const blmc_robots::Vector12d& zero_to_index_angle);
83 
91  blmc_robots::Solo12 solo_;
92 
98  blmc_robots::Vector12d ctrl_joint_torques_;
99 
104 
110  blmc_robots::Vector12d zero_to_index_angle_from_file_;
111  };
112 
113 
114 } // namespace dg_blmc_robots
115 
116 #endif // DGM_TEST_BENCH_8_MOTORS_HH
bool was_in_safety_mode_
Check if we entered once in the safety mode and stay there if so.
Definition: dgm_solo12.hpp:103
void get_sensors_to_map(dynamic_graph::VectorDGMap &map)
get_sensors_to_map acquieres the sensors data and feed it to the input/output map ...
Definition: dgm_solo12.cpp:62
void set_motor_controls_from_map(const dynamic_graph::VectorDGMap &map)
set_motor_controls_from_map reads the input map that contains the controls and send these controls to...
Definition: dgm_solo12.cpp:104
~DGMSolo12()
~DemoSingleMotor is the destructor.
Definition: dgm_solo12.cpp:21
blmc_robots::Solo12 solo_
Entries for the real hardware.
Definition: dgm_solo12.hpp:91
void initialize_hardware_communication_process()
initialize_hardware_communication_process is the function that initialize the hardware.
Definition: dgm_solo12.cpp:25
Definition: dgm_single_motor.hpp:17
bool is_in_safety_mode()
This function make also sure that the joint velocity do not exceed a certain value.
Definition: dgm_solo12.cpp:50
blmc_robots::Vector12d zero_to_index_angle_from_file_
These are the calibration value extracted from the paramters.
Definition: dgm_solo12.hpp:110
blmc_robots::Vector12d ctrl_joint_torques_
ctrl_joint_torques_ the joint torques to be sent.
Definition: dgm_solo12.hpp:98
DGMSolo12()
DemoSingleMotor is the constructor.
Definition: dgm_solo12.cpp:16
void calibrate_joint_position(const blmc_robots::Vector12d &zero_to_index_angle)
Calibrate the robot joint position.
Definition: dgm_solo12.cpp:135
Definition: dgm_solo12.hpp:22
bool calibrate_joint_position_callback(dg_blmc_robots::JointCalibration::Request &req, dg_blmc_robots::JointCalibration::Response &res)
Ros callback for the callibration procedure.
Definition: dgm_solo12.cpp:119