18 lines
248 B
C
18 lines
248 B
C
#ifndef KEYBOARD_H
|
|
#define KEYBOARD_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
|
|
#include "main.h"
|
|
|
|
void initKeyboard(void);
|
|
char readKey(void);
|
|
void scanKeyboard(void);
|
|
|
|
extern char lastKey;
|
|
extern uint32_t lastScanTime;
|
|
|
|
#endif
|