Nessuna descrizione
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.

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__