You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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_ */