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 |
- /*
- * encoder.h
- *
- * Based on https://github.com/mathertel/RotaryEncoder/blob/master/src/RotaryEncoder.cpp
- */
-
- #ifndef __ENCODER_H__
- #define __ENCODER_H__
-
- #include <stdint.h>
-
- void encoder_init(void);
- int32_t encoder_pos(void);
- void encoder_run(void);
-
- #endif // __ENCODER_H__
|