/* * mc_pot.h * * Author: Andrey Koryagin https://blog.avislab.com/ */ #ifndef INC_MC_POT_H_ #define INC_MC_POT_H_ #define POT_BUF_LEN 8 #define POT_START_VALUE 200 #define POT_STOP_VALUE 100 #define POT_MAX_VALUE 3800 #define POT_MIN_RPM 120 #define POT_MAX_RPM 1500 void POT_Process(); #endif /* INC_MC_POT_H_ */