scan keyboard

This commit is contained in:
Jeff Wang
2019-03-20 03:21:11 -04:00
parent f4f70853c1
commit 84b6888d7e
7 changed files with 119 additions and 8 deletions

15
src/key.h Normal file
View File

@ -0,0 +1,15 @@
/*
* key.h
*
* Created on: Mar 20, 2019
*/
#ifndef SRC_KEY_H_
#define SRC_KEY_H_
void KeyInit(void);
void KeyScan(void);
uint8_t* GetKeys(void);
#endif /* SRC_KEY_H_ */