mate-driver/firmware/input.h

13 lines
148 B
C
Raw Normal View History

2020-07-17 00:50:32 +02:00
#ifndef _INPUT_H
#define _INPUT_H
#include <avr/io.h>
#include <avr/interrupt.h>
void input_init(void);
int16_t input_get_result(void);
#endif