HEBI C++ API  3.12.2
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
end_effector.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include "lookup.hpp"
4 #include "group.hpp"
5 
6 namespace hebi {
7 namespace arm {
8 
9 // This is a general end effector that can be added to the end of the arm.
10 // Override this class to create end effectors for particular purposes.
12 public:
13  EndEffectorBase(size_t aux_size) : command_(aux_size), feedback_(aux_size) {};
14  virtual ~EndEffectorBase() = default;
15  // Updates feedback and sets aux state.
16  virtual bool update(Eigen::VectorXd& /*aux_state*/) = 0;
17  // Sends command
18  virtual bool send() = 0;
19 
21 
22  const hebi::GroupCommand& pendingCommand() const { return command_; }
23 
24 protected:
25 
28 };
29 
30 // An effort-controlled gripper, sending commands to HEBI modules.
31 //
32 // Example usage for effort-controller gripper:
33 //
34 // auto gripper = Gripper::create("Arm", "gripperSpool");
35 // Eigen::VectorXd aux_state(1);
36 // aux_state.setConstant(0);
37 // while(true) {
38 // aux_state = updateAuxState(); // Fill in this state from somewhere...
39 // end_effector->update(aux_state);
40 // end_effector->send();
41 // }
42 //
43 // Note -- you will probably want to check the return values of update and send to
44 // verify module connection is stable.
45 //
46 // Note that this is designed to be used with the arm API, but can also be used independently
47 // if desired.
48 class Gripper : public EndEffectorBase {
49 
50 public:
51  ~Gripper() override = default;
52 
53  enum class State {
54  Open, Close
55  };
56 
57  // Conversion of State enum to internal double representation here
58  static double StateToDouble(State state) {
59  return state == State::Open ? 0.0 : 1.0;
60  }
61 
62  // Create a gripper group for 1 module, using the module's family and name.
63  static std::unique_ptr<Gripper> create(const std::string& family, const std::string& name, double close_effort, double open_effort) {
64  hebi::Lookup lookup;
65  if (auto group = getGroup(lookup, family, name))
66  return std::unique_ptr<Gripper>(new Gripper(group, close_effort, open_effort));
67  return nullptr;
68  }
69 
70  // Use an existing group
71  static std::unique_ptr<Gripper> create(std::shared_ptr<hebi::Group>& group, double close_effort, double open_effort) {
72  if (!group || group->size() != 1)
73  return nullptr;
74  return std::unique_ptr<Gripper>(new Gripper(group, close_effort, open_effort));
75  }
76 
77  // Use an existing lookup object
78  static std::unique_ptr<Gripper> create(hebi::Lookup& lookup, const std::string& family, const std::string& name, double close_effort, double open_effort) {
79  if (auto group = getGroup(lookup, family, name))
80  return std::unique_ptr<Gripper>(new Gripper(group, close_effort, open_effort));
81  return nullptr;
82  }
83 
84  // Implementation of EndEffectorBase
85  //
86  // Updates feedback and sets aux state.
87  // State of size "0" indicates no change. Values of "nan" also indicate
88  // no change.
89  // Invalid inputs result in a "false" return value, with no
90  // command set.
91  bool update(Eigen::VectorXd& aux_state) override {
92  // Check for valid aux state:
93  auto n = aux_state.size();
94  if (n > 1)
95  return false;
96 
97  // Set aux state when given:
98  if (n == 1 && std::isfinite(aux_state[0])) {
99  setCommand(aux_state[0]);
100  }
101 
102  return group_->getNextFeedback(feedback_);
103  }
104 
105  // Implementation of EndEffectorBase
106  //
107  // Sends command to gripper.
108  bool send() override {
109  return group_->sendCommand(command_);
110  }
111 
112  // Gets the commanded state of the gripper. As this can be
113  // set to intermediate values, returns a double instead of
114  // a State enum. Use StateToDouble to convert from State
115  // to this double value.
116  double getState() {
117  return state_;
118  }
119 
120  // Sets the gripper to the given state
121  void setState(double state) {
122  setCommand(state);
123  }
124 
125  // Sets the gripper to the given state
126  void setState(State state) {
127  setCommand(StateToDouble(state));
128  }
129 
130  // Sets the gripper to be fully open
131  void open() {
133  }
134 
135  // Sets the gripper to be fully closed.
136  void close() {
138  }
139 
140  // Toggle the state of the gripper.
141  //
142  // If the gripper was commanded more than half closed, it will become fully open.
143  // Otherwise it will become fully closed
144  void toggle() {
145  // Note -- still works it value has been manually set to non-0/1 values
146  if (state_ <= 0.5)
147  setCommand(1.0);
148  else
149  setCommand(0.0);
150  }
151 
152  // Loads gains from the given .xml file, and sends them to the gripper group.
153  // Returns false if the gains file could not be found, if these is a mismatch
154  // in number of modules, or the modules do not acknowledge receipt of the
155  // gains.
156  bool loadGains(const std::string& gains_file) {
157  hebi::GroupCommand gains_cmd(group_->size());
158  if (!gains_cmd.readGains(gains_file))
159  return false;
160 
161  return group_->sendCommandWithAcknowledgement(gains_cmd);
162  }
163 
164 protected:
165  // Typed setters depending on class type
166  void setCommand(double value) {
167  command_[0].actuator().effort().set(value * close_effort_ + (1.0 - value) * open_effort_);
168  state_ = value;
169  }
170 
171 private:
172  Gripper(std::shared_ptr<hebi::Group> group, double close_effort, double open_effort)
173  : EndEffectorBase(1), group_(group), close_effort_(close_effort), open_effort_(open_effort) {
174  setCommand(state_);
175  }
176 
177  static std::shared_ptr<hebi::Group> getGroup(Lookup& lookup, const std::string& family, const std::string& name) {
178  auto group = lookup.getGroupFromNames(std::vector<std::string>{ family}, std::vector<std::string>{ name });
179  if (!group || group->size() != 1)
180  return nullptr;
181  return group;
182  }
183 
184  std::shared_ptr<hebi::Group> group_;
185 
186  double close_effort_{};
187  double open_effort_{};
188  // The current state of the gripper. Range of the value is [0.0, 1.0]
189  double state_{};
190 };
191 
192 } // namespace arm
193 } // namespace hebi
A list of Feedback objects that can be received from a Group of modules; the size() must match the nu...
Definition: group_feedback.hpp:18
static std::unique_ptr< Gripper > create(hebi::Lookup &lookup, const std::string &family, const std::string &name, double close_effort, double open_effort)
Definition: end_effector.hpp:78
static double StateToDouble(State state)
Definition: end_effector.hpp:58
hebi::GroupCommand & pendingCommand()
Definition: end_effector.hpp:20
void toggle()
Definition: end_effector.hpp:144
bool update(Eigen::VectorXd &aux_state) override
Definition: end_effector.hpp:91
~Gripper() override=default
Definition: arm.cpp:10
const hebi::GroupCommand & pendingCommand() const
Definition: end_effector.hpp:22
double getState()
Definition: end_effector.hpp:116
bool send() override
Definition: end_effector.hpp:108
std::shared_ptr< Group > getGroupFromNames(const std::vector< std::string > &families, const std::vector< std::string > &names, int32_t timeout_ms=DEFAULT_TIMEOUT) const
Get a group from modules with the given names and families.
Definition: lookup.cpp:27
Definition: arm.cpp:11
virtual bool update(Eigen::VectorXd &)=0
void close()
Definition: end_effector.hpp:136
void setState(double state)
Definition: end_effector.hpp:121
static std::unique_ptr< Gripper > create(std::shared_ptr< hebi::Group > &group, double close_effort, double open_effort)
Definition: end_effector.hpp:71
hebi::GroupFeedback feedback_
Definition: end_effector.hpp:27
bool loadGains(const std::string &gains_file)
Definition: end_effector.hpp:156
void open()
Definition: end_effector.hpp:131
A list of Command objects appropriate for sending to a Group of modules; the size() must match the nu...
Definition: group_command.hpp:19
void setCommand(double value)
Definition: end_effector.hpp:166
Definition: end_effector.hpp:48
hebi::GroupCommand command_
Definition: end_effector.hpp:26
EndEffectorBase(size_t aux_size)
Definition: end_effector.hpp:13
virtual ~EndEffectorBase()=default
Maintains a registry of network-connected modules and returns Group objects to the user.
Definition: lookup.hpp:24
Definition: end_effector.hpp:11
void setState(State state)
Definition: end_effector.hpp:126
static std::unique_ptr< Gripper > create(const std::string &family, const std::string &name, double close_effort, double open_effort)
Definition: end_effector.hpp:63
State
Definition: end_effector.hpp:53