#ifndef _KEY_H_ #define _KEY_H_ #include "main.h" typedef enum { KEY_ADD = 1, KEY_SUB, KEY_S, } button_id_e; void key_init(void); #endif // _KEY_H_