dg_blmc_robots
dgm_stuggihop.hpp
Go to the documentation of this file.
1 
11 #ifndef DGM_STUGGIHOP_HH
12 #define DGM_STUGGIHOP_HH
13 
14 #include <dynamic_graph_manager/dynamic_graph_manager.hh>
15 #include <blmc_robots/stuggihop.hpp>
16 
17 namespace dg_blmc_robots
18 {
19 
20  class DGMStuggihop : public dynamic_graph::DynamicGraphManager
21  {
22  public:
26  DGMStuggihop();
27 
31  ~DGMStuggihop();
32 
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 
57  virtual bool is_in_safety_mode();
58  private:
59 
67  blmc_robots::Stuggihop stuggihop_;
68 
72  Eigen::Vector2d ctrl_joint_torques_;
73 
78  };
79 
80 
81 } // namespace dg_blmc_robots
82 
83 #endif // DGM_STUGGIHOP_HH
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_stuggihop.cpp:97
DGMStuggihop()
DGMStuggihop is the constructor.
Definition: dgm_stuggihop.cpp:13
Definition: dgm_single_motor.hpp:17
Definition: dgm_stuggihop.hpp:20
~DGMStuggihop()
~DGMStuggihop is the destructor.
Definition: dgm_stuggihop.cpp:17
virtual bool is_in_safety_mode()
is_in_safety_mode Implement custom safe-mode detection.
Definition: dgm_stuggihop.cpp:26
Eigen::Vector2d ctrl_joint_torques_
ctrl_joint_torques_ the joint torques to be sent
Definition: dgm_stuggihop.hpp:72
void initialize_hardware_communication_process()
initialize_hardware_communication_process is the function that initialize the hardware.
Definition: dgm_stuggihop.cpp:21
void get_sensors_to_map(dynamic_graph::VectorDGMap &map)
get_sensors_to_map acquires the sensors data and feeds it to the input/output map ...
Definition: dgm_stuggihop.cpp:38
blmc_robots::Stuggihop stuggihop_
Entries for the real hardware.
Definition: dgm_stuggihop.hpp:67
bool was_in_safety_mode_
was_in_safety_mode_ Toggle to keep in safety mode once it was entered.
Definition: dgm_stuggihop.hpp:77