SVHHomeSettings.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 //----------------------------------------------------------------------
33 //----------------------------------------------------------------------
34 
35 #ifndef SVHHOMESETTINGS_H
36 #define SVHHOMESETTINGS_H
37 
38 #include <ostream>
39 #include <vector>
40 
41 namespace driver_svh {
42 
45 {
47  int direction;
62  float range_rad;
67 
73  : direction(+1)
74  , minimum_offset(0.0)
75  , maximum_offset(0.0)
76  , idle_position(0.0)
77  , range_rad(0.0)
78  , reset_current_factor(0.5)
79  {
80  }
81 
90  SVHHomeSettings(const int& direction,
91  const float& minimum_offset,
92  const float& maximum_offset,
93  const float& idle_position,
94  const float& range_rad,
95  const float& reset_current_factor)
96  : minimum_offset(minimum_offset)
97  , maximum_offset(maximum_offset)
98  , idle_position(idle_position)
99  , range_rad(range_rad)
100  , reset_current_factor(reset_current_factor)
101  {
102  // Limit the direction to just contain a factor rather than any multipliers
103  this->direction = direction < 0 ? -1 : +1;
104  // Limit the resetCurrentFactor to allowed bounds
105  this->reset_current_factor = std::max(std::min(reset_current_factor, 1.0f), 0.0f);
106  }
107 
115  SVHHomeSettings(const std::vector<float>& home_settings)
116  {
117  // maybe not the most beautifull way but it works.
118  size_t size = home_settings.size();
119  float temp_direction = 0.0;
120 
121  temp_direction = (size > 0) ? home_settings[0] : 0.0f;
122  direction = temp_direction < 0.0 ? -1 : +1;
123 
124  minimum_offset = (size > 1) ? home_settings[1] : 0.0f;
125  maximum_offset = (size > 2) ? home_settings[2] : 0.0f;
126  idle_position = (size > 3) ? home_settings[3] : 0.0f;
127  range_rad = (size > 4) ? home_settings[4] : 0.0f;
128  reset_current_factor = (size > 5) ? home_settings[5] : 0.5f;
129 
130  // Limit the resetCurrentFactor to allowed bounds
131  reset_current_factor = std::max(std::min(reset_current_factor, 1.0f), 0.0f);
132  }
133 };
134 
135 
137 inline std::ostream& operator<<(std::ostream& o, const SVHHomeSettings& hs)
138 {
139  o << "Direction " << hs.direction << " "
140  << "Min offset " << hs.minimum_offset << " "
141  << "Max offset " << hs.maximum_offset << " "
142  << "idle pos " << hs.idle_position << " "
143  << "Range Rad " << hs.range_rad << " "
144  << "Reset Curr Factor " << hs.reset_current_factor << " " << std::endl;
145  return o;
146 }
147 
148 
149 } // namespace driver_svh
150 
151 
152 #endif // SVHHOMESETTINGS_H
float maximum_offset
Maximum reachable tick limit, given as an offset from the hard stop (soft limit)
float minimum_offset
Minimum reachable tick limit, given as offset from the hard stop (soft limit)
SVHHomeSettings(const std::vector< float > &home_settings)
SVHHomeSettings Convenience constructor to easily construct home settings out of a singe vector...
int direction
Movement direction of the finger +1 or -1 home in positive or negative direction. ...
driver_svh::ArrayBuilder & operator<<(driver_svh::ArrayBuilder &ab, const SVHControlCommand &data)
SVHHomeSettings()
SVHHomeSettings Default constructor initializing empty homeSettings. This is not usefull and should b...
SVHHomeSettings(const int &direction, const float &minimum_offset, const float &maximum_offset, const float &idle_position, const float &range_rad, const float &reset_current_factor)
SVHHomeSettingsn Constructor for the home settings, providing each value individually.
data sctructure for home positions


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