work on Qt GUI, still not working properly

This commit is contained in:
Jeff Wang
2019-04-04 00:33:42 -04:00
parent 8f39958679
commit fc6d8efc5f
17 changed files with 328 additions and 33 deletions

View File

@ -7,6 +7,11 @@
#ifndef SRC_KEY_H_
#define SRC_KEY_H_
#ifdef __cplusplus
extern "C" {
#endif
//#define DEBUG_KEYS
void KeyInit(void);
@ -24,4 +29,8 @@ extern uint8_t Keys[TOTAL_ROWS]; //only bottom nibbles get set
extern int8_t NewKeyPressed;
#ifdef __cplusplus
}
#endif
#endif /* SRC_KEY_H_ */