Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617
  1. /*
  2. * encoder.h
  3. *
  4. * Based on https://github.com/mathertel/RotaryEncoder/blob/master/src/RotaryEncoder.cpp
  5. */
  6. #ifndef __ENCODER_H__
  7. #define __ENCODER_H__
  8. #include <stdint.h>
  9. void encoder_init(void);
  10. int32_t encoder_pos(void);
  11. void encoder_run(void);
  12. #endif // __ENCODER_H__