19 lines
295 B
C
19 lines
295 B
C
/*
|
|
* rotaryEncoder.h
|
|
*
|
|
* Created: 16/12/2021 16:33:57
|
|
* Author: n0x
|
|
*/
|
|
|
|
#include <avr/io.h>
|
|
#include <avr/interrupt.h>
|
|
|
|
#ifndef ROTARYENCODER_H_
|
|
#define ROTARYENCODER_H_
|
|
|
|
void drehgeber_init(void);
|
|
void drehgeber_process(void);
|
|
int16_t drehgeber_get(void);
|
|
|
|
|
|
#endif /* ROTARYENCODER_H_ */ |