1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#ifndef _KEYLCD_H_ #define _KEYLCD_H_ //#include "i2c.h" #include "string.h" #include "uart.h" class KeyLCD { private: public: KeyLCD(); ~KeyLCD(); void print(char* data); void clear(); }; #endif