SVHControllerFeedback.h
Go to the documentation of this file.
1 //
3 // © Copyright 2022 SCHUNK Mobile Greifsysteme GmbH, Lauffen/Neckar Germany
4 // © Copyright 2022 FZI Forschungszentrum Informatik, Karlsruhe, Germany
5 //
6 // This file is part of the Schunk SVH Library.
7 //
8 // The Schunk SVH Library is free software: you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation, either version 3 of the License, or (at your
11 // option) any later version.
12 //
13 // The Schunk SVH Library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
16 // Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License along with
19 // the Schunk SVH Library. If not, see <https://www.gnu.org/licenses/>.
20 //
22 
23 //----------------------------------------------------------------------
34 //----------------------------------------------------------------------
35 #ifndef SVHCONTROLLERFEEDBACK_H
36 #define SVHCONTROLLERFEEDBACK_H
37 
39 
40 namespace driver_svh {
41 
46 {
48  int32_t position;
50  int16_t current;
51 
57  SVHControllerFeedback(const int32_t& position = 0, const int16_t& current = 0)
58  : position(position)
59  , current(current)
60  {
61  }
62 
64  bool operator==(const SVHControllerFeedback& other) const
65  {
66  return (position == other.position && current == other.current);
67  }
68 };
69 
74 {
76  std::vector<SVHControllerFeedback> feedbacks;
77 
89  const SVHControllerFeedback& feedback1,
90  const SVHControllerFeedback& feedback2,
91  const SVHControllerFeedback& feedback3,
92  const SVHControllerFeedback& feedback4,
93  const SVHControllerFeedback& feedback5,
94  const SVHControllerFeedback& feedback6,
95  const SVHControllerFeedback& feedback7,
96  const SVHControllerFeedback& feedback8)
97  {
98  feedbacks.push_back(feedback0);
99  feedbacks.push_back(feedback1);
100  feedbacks.push_back(feedback2);
101  feedbacks.push_back(feedback3);
102  feedbacks.push_back(feedback4);
103  feedbacks.push_back(feedback5);
104  feedbacks.push_back(feedback6);
105  feedbacks.push_back(feedback7);
106  feedbacks.push_back(feedback8);
107  }
108 
116  SVHControllerFeedbackAllChannels(std::vector<SVHControllerFeedback> feedbacks)
117  {
118  feedbacks.insert(feedbacks.begin(), feedbacks.begin(), feedbacks.end());
119  }
120 
126  : feedbacks(9)
127  {
128  }
129 
130 
133  {
134  return (feedbacks == other.feedbacks);
135  }
136 };
137 
140  const SVHControllerFeedback& data)
141 {
142  ab << data.position << data.current;
143  return ab;
144 }
145 
146 
149  SVHControllerFeedback& data)
150 {
151  ab >> data.position >> data.current;
152  return ab;
153 }
154 
156 inline std::ostream& operator<<(std::ostream& o, const SVHControllerFeedback& cf)
157 {
158  o << "Pos: " << cf.position << " Cur: " << cf.current << std::endl;
159  return o;
160 }
161 
162 
166 {
167  // The Data is transmitted not channel by channel but rather position first, Currents afterwards
168  // for all channels
169  for (std::vector<SVHControllerFeedback>::iterator it = data.feedbacks.begin();
170  it != data.feedbacks.end();
171  ++it)
172  {
173  ab << it->position;
174  }
175 
176  for (std::vector<SVHControllerFeedback>::iterator it = data.feedbacks.begin();
177  it != data.feedbacks.end();
178  ++it)
179  {
180  ab << it->current;
181  }
182  return ab;
183 }
184 
185 
189 {
190  // The Data is transmitted not channel by channel but rather position first, Currents afterwards
191  // for all channels
192  for (std::vector<SVHControllerFeedback>::iterator it = data.feedbacks.begin();
193  it != data.feedbacks.end();
194  ++it)
195  {
196  ab >> it->position;
197  }
198 
199  for (std::vector<SVHControllerFeedback>::iterator it = data.feedbacks.begin();
200  it != data.feedbacks.end();
201  ++it)
202  {
203  ab >> it->current;
204  }
205  return ab;
206 }
207 
209 inline std::ostream& operator<<(std::ostream& o, const SVHControllerFeedbackAllChannels& cf)
210 {
211  o << "Feedbacks: ";
212  unsigned int i = 0;
213  for (std::vector<SVHControllerFeedback>::const_iterator it = cf.feedbacks.begin();
214  it != cf.feedbacks.end();
215  ++it, ++i)
216  {
217  o << "Chan " << i << " : " << *it;
218  }
219  o << std::endl;
220  return o;
221 }
222 
223 } // namespace driver_svh
224 
225 #endif // SVHCONTROLLERFEEDBACK_H
bool operator==(const SVHControllerFeedbackAllChannels &other) const
Compares two SVHControllerFeedbackAllChannels objects.
int32_t position
Returned position value of the motor [Ticks].
SVHControllerFeedbackAllChannels(std::vector< SVHControllerFeedback > feedbacks)
Creates a SVHControllerFeedbackAllChannels structure from a vector.
driver_svh::ArrayBuilder & operator<<(driver_svh::ArrayBuilder &ab, const SVHControlCommand &data)
std::vector< SVHControllerFeedback > feedbacks
Vector holding multiple channels.
bool operator==(const SVHControllerFeedback &other) const
Compares two SVHControllerFeedback objects.
The SVHControllerFeedback saves the feedback of a single motor.
driver_svh::ArrayBuilder & operator>>(driver_svh::ArrayBuilder &ab, SVHControlCommand &data)
overload stream operator to easily deserialize control commands for one channel
int16_t current
Returned current value of the motor [mA].
SVHControllerFeedbackAllChannels()
Constructs an empty SVHControllerFeedbackAllChannels objects, prefilled with 9 default channel feedba...
The SVHControllerFeedbackAllChannes saves the feedback of a all motors.
SVHControllerFeedbackAllChannels(const SVHControllerFeedback &feedback0, const SVHControllerFeedback &feedback1, const SVHControllerFeedback &feedback2, const SVHControllerFeedback &feedback3, const SVHControllerFeedback &feedback4, const SVHControllerFeedback &feedback5, const SVHControllerFeedback &feedback6, const SVHControllerFeedback &feedback7, const SVHControllerFeedback &feedback8)
Constructs a SVHControllerFeedbackAllChannels data structure from explicit ffedback elements...
SVHControllerFeedback(const int32_t &position=0, const int16_t &current=0)
standard constructor


schunk_svh_library
Author(s): Georg Heppner, Lars Pfotzer, Felix Exner, Johannes Mangler, Stefan Scherzinger, Pascal Becker
autogenerated on Fri Apr 14 2023 02:26:23