Ingen beskrivning
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

encoder.h 281B

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__