dg_blmc_robots
dgm_solo8ti.hpp
1 
11 #pragma once
12 
13 #include <dynamic_graph_manager/dynamic_graph_manager.hh>
14 #include <blmc_robots/solo8ti.hpp>
15 #include "dg_blmc_robots/JointCalibration.h"
16 #include "yaml_cpp_catkin/yaml_cpp_fwd.hpp"
17 
18 namespace dg_blmc_robots
19 {
20 
21  class DGMSolo8TI : public dynamic_graph::DynamicGraphManager
22  {
23  public:
27  DGMSolo8TI();
28 
32  ~DGMSolo8TI();
33 
39 
45  void get_sensors_to_map(dynamic_graph::VectorDGMap& map);
46 
52  void set_motor_controls_from_map(const dynamic_graph::VectorDGMap& map);
53 
62  dg_blmc_robots::JointCalibration::Request& req,
63  dg_blmc_robots::JointCalibration::Response& res);
64 
65  private:
72  void calibrate_joint_position(const blmc_robots::Vector8d& zero_to_index_angle);
73 
81  blmc_robots::Solo8TI solo_;
82 
88  blmc_robots::Vector8d ctrl_joint_torques_;
89 
94 
100  blmc_robots::Vector8d zero_to_index_angle_from_file_;
101  };
102 
103 
104 } // namespace dg_blmc_robots
105 
bool was_in_safety_mode_
Check if we entered once in the safety mode and stay there if so.
Definition: dgm_solo8ti.hpp:93
bool calibrate_joint_position_callback(dg_blmc_robots::JointCalibration::Request &req, dg_blmc_robots::JointCalibration::Response &res)
Handle the calibrate_joint callback.
Definition: dgm_solo8ti.cpp:104
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_solo8ti.cpp:89
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_solo8ti.cpp:46
Definition: dgm_single_motor.hpp:17
blmc_robots::Solo8TI solo_
Entries for the real hardware.
Definition: dgm_solo8ti.hpp:81
blmc_robots::Vector8d zero_to_index_angle_from_file_
These are the calibration value extracted from the paramters.
Definition: dgm_solo8ti.hpp:100
~DGMSolo8TI()
~DemoSingleMotor is the destructor.
Definition: dgm_solo8ti.cpp:21
void initialize_hardware_communication_process()
initialize_hardware_communication_process is the function that initialize the hardware.
Definition: dgm_solo8ti.cpp:25
DGMSolo8TI()
DemoSingleMotor is the constructor.
Definition: dgm_solo8ti.cpp:16
void calibrate_joint_position(const blmc_robots::Vector8d &zero_to_index_angle)
Calibrate the robot joint position.
Definition: dgm_solo8ti.cpp:119
blmc_robots::Vector8d ctrl_joint_torques_
ctrl_joint_torques_ the joint torques to be sent.
Definition: dgm_solo8ti.hpp:88
Definition: dgm_solo8ti.hpp:21