12345678910111213141516171819 |
- #ifndef _ENCODER_H_
- #define _ENCODER_H_
-
- void encoder_init(void);
-
- void encoder_run(void);
-
- bool encoder_click(void);
- bool kill_switch(void);
-
- // --------------------------------------
-
- void encoder_run_fast(void);
-
- // disable interrupts while reading these
- int encoder_change(void);
- int encoder_rpm(void);
-
- #endif // _ENCODER_H_
|