暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

encoder.h 260B

123456789101112131415
  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. void encoder_init(void);
  9. int32_t encoder_pos(void);
  10. void encoder_run(void);
  11. #endif // __ENCODER_H__