35 #ifndef SVHHOMESETTINGS_H 36 #define SVHHOMESETTINGS_H 78 , reset_current_factor(0.5)
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)
103 this->direction = direction < 0 ? -1 : +1;
105 this->reset_current_factor = std::max(std::min(reset_current_factor, 1.0f), 0.0f);
118 size_t size = home_settings.size();
119 float temp_direction = 0.0;
121 temp_direction = (size > 0) ? home_settings[0] : 0.0f;
122 direction = temp_direction < 0.0 ? -1 : +1;
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;
131 reset_current_factor = std::max(std::min(reset_current_factor, 1.0f), 0.0f);
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)
float reset_current_factor
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