Config.hpp
1 #ifndef _ACT_SCHILLING_CONFIG_HPP_
2 #define _ACT_SCHILLING_CONFIG_HPP_
3 
4 #include "ActTypes.hpp"
5 
6 namespace act_schilling
7 {
8 
9 struct Config
10 {
11  int velocity;
12  ControlMode ctrl_mode;
13  int home_pos;
14 
15  Config()
16  : velocity(1250),
17  ctrl_mode(MODE_VEL),
18  home_pos(0)
19  {
20  }
21 
22 };
23 
24 }
25 #endif
Definition: ActHandler.hpp:9
Definition: Config.hpp:9