mc_pot.h 330 B

123456789101112131415161718192021
  1. /*
  2. * mc_pot.h
  3. *
  4. * Author: Andrey Koryagin https://blog.avislab.com/
  5. */
  6. #ifndef INC_MC_POT_H_
  7. #define INC_MC_POT_H_
  8. #define POT_BUF_LEN 8
  9. #define POT_START_VALUE 200
  10. #define POT_STOP_VALUE 100
  11. #define POT_MAX_VALUE 3800
  12. #define POT_MIN_RPM 120
  13. #define POT_MAX_RPM 1500
  14. void POT_Process();
  15. #endif /* INC_MC_POT_H_ */